Skip to content

Commit

Permalink
[pom] Move bcel into dependency management
Browse files Browse the repository at this point in the history
need to control as we don't release spotbugs at same frequency and need this to stay up to date to support newer jdks.
  • Loading branch information
hazendaz committed Nov 29, 2024
1 parent efc0854 commit 0e9ad1e
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@

<dependencyManagement>
<dependencies>
<!-- bom control -->
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-bom</artifactId>
Expand All @@ -275,6 +276,13 @@
<type>pom</type>
<scope>import</scope>
</dependency>

<!-- individual control -->
<dependency>
<groupId>org.apache.bcel</groupId>
<artifactId>bcel</artifactId>
<version>${bcel.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -308,13 +316,6 @@
<artifactId>slf4j-simple</artifactId>
</dependency>

<!-- bcel -->
<dependency>
<groupId>org.apache.bcel</groupId>
<artifactId>bcel</artifactId>
<version>${bcel.version}</version>
</dependency>

<!-- gson -->
<dependency>
<groupId>com.google.code.gson</groupId>
Expand Down

0 comments on commit 0e9ad1e

Please sign in to comment.