Skip to content

Commit

Permalink
[Core] Update libs
Browse files Browse the repository at this point in the history
junit 5.10.0 -> 5.10.3
log4j 2.21.1 -> 2.23.1
gson 2.10.1 -> 2.11.0
javassist 3.29.2 -> 3.30.2
  • Loading branch information
NPi2Loup committed Jul 1, 2024
1 parent 8cca1e3 commit fe898f8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
10 changes: 5 additions & 5 deletions vertigo-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.21.1</version> <!-- To avoid conflict of version, we must exclude log4j-api version when necessary -->
<version>2.23.1</version> <!-- To avoid conflict of version, we must exclude log4j-api version when necessary -->
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.21.1</version> <!-- To avoid conflict of version, we must exclude log4j-core version when necessary -->
<version>2.23.1</version> <!-- To avoid conflict of version, we must exclude log4j-core version when necessary -->
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-layout-template-json</artifactId>
<version>2.21.1</version><!-- To avoid conflict of version, we must exclude log4j-core version when necessary -->
<version>2.23.1</version><!-- To avoid conflict of version, we must exclude log4j-core version when necessary -->
</dependency>

<dependency>
Expand All @@ -45,7 +45,7 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
<version>2.11.0</version>
</dependency> <!-- json config -->
<dependency>
<groupId>org.yaml</groupId>
Expand All @@ -55,7 +55,7 @@
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.29.2-GA</version>
<version>3.30.2-GA</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down
11 changes: 8 additions & 3 deletions vertigo-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@
<developer>
<id>mlaroche</id>
<name>Matthieu Laroche</name>
<email>matthieu dot laroche at kleegroup dot com</email>
<email>matthieu dot laroche at ovomnia dot io</email>
</developer>
<developer>
<id>skerdudou</id>
<name>Steven Kerdudou</name>
<email>steven dot kerdudou at kleegroup dot com</email>
</developer>
</developers>

Expand Down Expand Up @@ -64,13 +69,13 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.10.0</version>
<version>5.10.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.10.0</version>
<version>5.10.3</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit fe898f8

Please sign in to comment.