Skip to content

Commit

Permalink
[pom] Order 'asm' first to overcome issues with maven changes
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
hazendaz committed Jul 5, 2022
1 parent ffbbf4d commit b952219
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,28 @@
<version>${slf4jVersion}</version>
</dependency>

<!-- asm -->
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-analysis</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-util</artifactId>
</dependency>

<!-- gmaven -->
<dependency>
<groupId>org.apache.ant</groupId>
Expand Down Expand Up @@ -515,28 +537,6 @@
<artifactId>plexus-utils</artifactId>
<version>${plexusUtilsVersion}</version>
</dependency>

<!-- Better jdk support -->
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-analysis</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-util</artifactId>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit b952219

Please sign in to comment.