Skip to content

Commit

Permalink
Merge pull request #4 from oleg-nenashev/asm6
Browse files Browse the repository at this point in the history
[JENKINS-51837] - Update ASM to 6.2
  • Loading branch information
kohsuke authored Jun 18, 2018
2 parents 1aa9550 + 50398ed commit 99c6f1c
Showing 1 changed file with 32 additions and 3 deletions.
35 changes: 32 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>

<artifactId>asm6</artifactId>
<version>6.0_BETA-2-SNAPSHOT</version>
<version>6.2-SNAPSHOT</version>

<name>asm6</name>
<description>ObjectWeb ASM package-renamed to isolate incompatibilities between major versions</description>
Expand All @@ -31,12 +31,41 @@
<tag>HEAD</tag>
</scm>

<properties>
<asm.version>6.2</asm.version>
</properties>

<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-debug-all</artifactId>
<version>6.0_BETA</version>
<artifactId>asm</artifactId>
<version>${asm.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-analysis</artifactId>
<version>${asm.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>${asm.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
<version>${asm.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-util</artifactId>
<version>${asm.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-xml</artifactId>
<version>${asm.version}</version>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 99c6f1c

Please sign in to comment.