Skip to content

Commit

Permalink
bump cglib, for updated asm needed for nashorn
Browse files Browse the repository at this point in the history
  • Loading branch information
rkrenn committed Jun 18, 2024
1 parent 8417c9e commit 3ceab9d
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 6 deletions.
8 changes: 7 additions & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,13 @@
<artifactId>ehcache</artifactId>
<type>pom</type>
</dependency>
<dependency>
<!-- <dependency>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
</dependency> -->
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
</dependency>
<dependency>
<groupId>org.javassist</groupId>
Expand Down Expand Up @@ -183,6 +187,8 @@
<scope>test</scope>
</dependency> -->



<dependency>
<groupId>org.openjdk.nashorn</groupId>
<artifactId>nashorn-core</artifactId>
Expand Down
30 changes: 25 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -261,25 +261,45 @@
<artifactId>spring-test</artifactId>
<version>${spring.version}</version>
</dependency>

<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>3.3.0</version>
<scope>runtime</scope>
</dependency>
<!-- <dependency>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
<version>2.2.2</version>
<version>3.3.0</version>
<scope>runtime</scope>
</dependency> -->

<!-- <dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.7</version>
</dependency>
<!-- Following is necessary for deployment on Payara to avoid version conflicts -->
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
<version>2.2.2</version>
<scope>runtime</scope>
</dependency> -->
<!-- Following is necessary for deployment on Payara to avoid version conflicts -->
<!-- <dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>2.2.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
</dependency> -->
<!-- <dependency>
<groupId>asm</groupId>
<artifactId>asm</artifactId>
<version>3.3.1</version>
<scope>runtime</scope>
</dependency>
</dependency> -->

<dependency>
<groupId>antlr</groupId>
<artifactId>antlr</artifactId>
Expand Down

0 comments on commit 3ceab9d

Please sign in to comment.