Skip to content

Commit b952219

Browse files
committed
[pom] Order 'asm' first to overcome issues with maven changes
recently maven is moving away from supplying in compile scope maven artifacts. With the common filter that changed behaviour of the build here where asm was pulling 3.3.1 and not 9.3. Moved this to occur before groovy and maven artifacts as well as the bom addition to overcome these issues.
1 parent ffbbf4d commit b952219

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

pom.xml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,28 @@
240240
<version>${slf4jVersion}</version>
241241
</dependency>
242242

243+
<!-- asm -->
244+
<dependency>
245+
<groupId>org.ow2.asm</groupId>
246+
<artifactId>asm</artifactId>
247+
</dependency>
248+
<dependency>
249+
<groupId>org.ow2.asm</groupId>
250+
<artifactId>asm-analysis</artifactId>
251+
</dependency>
252+
<dependency>
253+
<groupId>org.ow2.asm</groupId>
254+
<artifactId>asm-commons</artifactId>
255+
</dependency>
256+
<dependency>
257+
<groupId>org.ow2.asm</groupId>
258+
<artifactId>asm-tree</artifactId>
259+
</dependency>
260+
<dependency>
261+
<groupId>org.ow2.asm</groupId>
262+
<artifactId>asm-util</artifactId>
263+
</dependency>
264+
243265
<!-- gmaven -->
244266
<dependency>
245267
<groupId>org.apache.ant</groupId>
@@ -515,28 +537,6 @@
515537
<artifactId>plexus-utils</artifactId>
516538
<version>${plexusUtilsVersion}</version>
517539
</dependency>
518-
519-
<!-- Better jdk support -->
520-
<dependency>
521-
<groupId>org.ow2.asm</groupId>
522-
<artifactId>asm</artifactId>
523-
</dependency>
524-
<dependency>
525-
<groupId>org.ow2.asm</groupId>
526-
<artifactId>asm-analysis</artifactId>
527-
</dependency>
528-
<dependency>
529-
<groupId>org.ow2.asm</groupId>
530-
<artifactId>asm-commons</artifactId>
531-
</dependency>
532-
<dependency>
533-
<groupId>org.ow2.asm</groupId>
534-
<artifactId>asm-tree</artifactId>
535-
</dependency>
536-
<dependency>
537-
<groupId>org.ow2.asm</groupId>
538-
<artifactId>asm-util</artifactId>
539-
</dependency>
540540
</dependencies>
541541

542542
<build>

0 commit comments

Comments
 (0)