Skip to content

Commit

Permalink
Removed CVE prone dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JanMosigItemis committed Oct 6, 2023
1 parent 395977e commit 026af0f
Showing 1 changed file with 14 additions and 17 deletions.
31 changes: 14 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</parent>

<artifactId>fluffyj.memory</artifactId>
<version>1.8.0-SNAPSHOT</version>
<version>1.7.2-SNAPSHOT</version>

<name>FluffyJ Memory</name>
<description>Adding some fluff to Java's foreign memory abstraction</description>
Expand Down Expand Up @@ -81,8 +81,9 @@
<logback.version>1.4.11</logback.version>
<equalsverifier.version>3.15.2</equalsverifier.version>
<arch.unit.version>1.1.0</arch.unit.version>
<fluffyj.version>1.13.0</fluffyj.version>
<fluffyj.tests.version>1.7.1</fluffyj.tests.version>
<apache.commons.lang.version>3.13.0</apache.commons.lang.version>
<fluffyj.version>1.13.1</fluffyj.version>
<fluffyj.tests.version>1.7.2</fluffyj.tests.version>
<custom.jvm.options>
--enable-native-access=ALL-UNNAMED --enable-preview
</custom.jvm.options>
Expand All @@ -96,14 +97,6 @@
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<!-- Required to support null annotation checks according
to
JSR-305 -->
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs</artifactId>
<version>${spotbugs.version}</version>
</dependency>
<!--
https://mvnrepository.com/artifact/ch.qos.logback/logback-classic -->
<dependency>
Expand Down Expand Up @@ -179,6 +172,11 @@
<artifactId>equalsverifier</artifactId>
<version>${equalsverifier.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${apache.commons.lang.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand All @@ -191,12 +189,6 @@
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
<dependency>
<!-- Required to support null annotation checks according to
JSR-305 -->
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs</artifactId>
</dependency>
<dependency>
<groupId>com.itemis</groupId>
<artifactId>fluffyj</artifactId>
Expand Down Expand Up @@ -252,6 +244,11 @@
<artifactId>equalsverifier</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<scope>test</scope>
</dependency>
<!-- End of test dependencies -->
</dependencies>

Expand Down

0 comments on commit 026af0f

Please sign in to comment.