Skip to content

Commit aaae742

Browse files
committed
bcel version updated
1 parent a1e6395 commit aaae742

1 file changed

Lines changed: 7 additions & 10 deletions

File tree

  • core-java-modules/core-java-jvm

core-java-modules/core-java-jvm/pom.xml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -54,31 +54,28 @@
5454
<dependency>
5555
<groupId>org.ow2.asm</groupId>
5656
<artifactId>asm</artifactId>
57-
<version>8.0.1</version>
57+
<version>${asm.version}</version>
5858
</dependency>
5959
<dependency>
6060
<groupId>org.ow2.asm</groupId>
6161
<artifactId>asm-util</artifactId>
62-
<version>8.0.1</version>
62+
<version>${asm.version}</version>
6363
</dependency>
6464
<dependency>
6565
<groupId>org.apache.bcel</groupId>
6666
<artifactId>bcel</artifactId>
67-
<version>6.4.1</version>
68-
</dependency>
69-
<dependency>
70-
<groupId>org.javassist</groupId>
71-
<artifactId>javassist</artifactId>
72-
<version>3.27.0-GA</version>
73-
</dependency>
67+
<version>${bcel.version}</version>
68+
</dependency>
7469
</dependencies>
7570

7671
<properties>
7772
<assertj.version>3.6.1</assertj.version>
7873
<!-- instrumentation -->
79-
<javaassist.version>3.21.0-GA</javaassist.version>
74+
<javaassist.version>3.27.0-GA</javaassist.version>
8075
<esapi.version>2.1.0.1</esapi.version>
8176
<sun.tools.version>1.8.0</sun.tools.version>
77+
<asm.version>8.0.1</asm.version>
78+
<bcel.version>6.5.0</bcel.version>
8279
</properties>
8380

8481
</project>

0 commit comments

Comments
 (0)