File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed
Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 112112 <artifactId >maven-shade-plugin</artifactId >
113113 <!-- MSHADE-419: 3.3.0 Shade plugin causes pom to be created without compile dependencies -->
114114 <version >3.2.4</version >
115+ <dependencies >
116+ <!-- MSHADE-419: 3.3.0
117+ Shade plugin specified old asm which fails builds with classes under META-INF/versions/*
118+ Manually override the version of ASM to be a newer one.
119+ https://github.com/apache/maven-shade-plugin/commit/57edc03162557d052deec762d6b87f1a4c24d653
120+ -->
121+ <dependency >
122+ <groupId >org.ow2.asm</groupId >
123+ <artifactId >asm</artifactId >
124+ <version >9.5</version >
125+ </dependency >
126+ <dependency >
127+ <groupId >org.ow2.asm</groupId >
128+ <artifactId >asm-commons</artifactId >
129+ <version >9.5</version >
130+ </dependency >
131+ </dependencies >
115132 <configuration >
116133 <shadedArtifactAttached >true</shadedArtifactAttached >
117134 <relocations >
Original file line number Diff line number Diff line change 7070 <dependency >
7171 <groupId >com.google.cloud</groupId >
7272 <artifactId >google-cloud-shared-dependencies</artifactId >
73- <version >3.13.0 </version >
73+ <version >3.13.1 </version >
7474 <type >pom</type >
7575 <scope >import</scope >
7676 </dependency >
You can’t perform that action at this time.
0 commit comments