summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas <>2021-12-12 11:57:06 +0100
committerThomas <>2021-12-12 11:57:06 +0100
commitf7518ec78431c6ff27984a88fe7a3d9631aabfef (patch)
treea774d761d4ee95fb758529694fb1b27e3138dbd5
parentcad02a4293b734efb94c14ee9d0cb4e6191e1e89 (diff)
downloadEAAF-Components-f7518ec78431c6ff27984a88fe7a3d9631aabfef.tar.gz
EAAF-Components-f7518ec78431c6ff27984a88fe7a3d9631aabfef.tar.bz2
EAAF-Components-f7518ec78431c6ff27984a88fe7a3d9631aabfef.zip
update some more third-party libs
-rw-r--r--eaaf-springboot-utils/pom.xml11
-rw-r--r--eaaf_core_utils/pom.xml16
-rw-r--r--eaaf_modules/eaaf_module_pvp2_core/pom.xml18
-rw-r--r--pom.xml8
4 files changed, 51 insertions, 2 deletions
diff --git a/eaaf-springboot-utils/pom.xml b/eaaf-springboot-utils/pom.xml
index ca60e1f1..a9d05417 100644
--- a/eaaf-springboot-utils/pom.xml
+++ b/eaaf-springboot-utils/pom.xml
@@ -60,6 +60,11 @@
<scope>provided</scope>
</dependency>
<dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-to-slf4j</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
@@ -85,6 +90,12 @@
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
diff --git a/eaaf_core_utils/pom.xml b/eaaf_core_utils/pom.xml
index 8b583e75..6ca82d9c 100644
--- a/eaaf_core_utils/pom.xml
+++ b/eaaf_core_utils/pom.xml
@@ -111,6 +111,12 @@
<groupId>com.squareup.okhttp3</groupId>
<artifactId>mockwebserver</artifactId>
<scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
@@ -133,6 +139,16 @@
<version>1.2.3</version>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.junit.vintage</groupId>
+ <artifactId>junit-vintage-engine</artifactId>
+ <version>${junit-jupiter-api.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.junit.jupiter</groupId>
+ <artifactId>junit-jupiter-migrationsupport</artifactId>
+ <version>${junit-jupiter-api.version}</version>
+ </dependency>
</dependencies>
<build>
diff --git a/eaaf_modules/eaaf_module_pvp2_core/pom.xml b/eaaf_modules/eaaf_module_pvp2_core/pom.xml
index 88fbd028..44bca828 100644
--- a/eaaf_modules/eaaf_module_pvp2_core/pom.xml
+++ b/eaaf_modules/eaaf_module_pvp2_core/pom.xml
@@ -102,6 +102,12 @@
<groupId>com.squareup.okhttp3</groupId>
<artifactId>mockwebserver</artifactId>
<scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
@@ -118,8 +124,18 @@
<groupId>io.grpc</groupId>
<artifactId>grpc-core</artifactId>
<scope>test</scope>
- </dependency>
+ </dependency>
+ <dependency>
+ <groupId>org.junit.vintage</groupId>
+ <artifactId>junit-vintage-engine</artifactId>
+ <version>${junit-jupiter-api.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.junit.jupiter</groupId>
+ <artifactId>junit-jupiter-migrationsupport</artifactId>
+ <version>${junit-jupiter-api.version}</version>
+ </dependency>
</dependencies>
<build>
diff --git a/pom.xml b/pom.xml
index 45125208..9b7504b5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -56,6 +56,7 @@
<org.bouncycastle.bctls-jdk15to18.version>1.69</org.bouncycastle.bctls-jdk15to18.version>
<org.slf4j.version>1.7.32</org.slf4j.version>
+ <log4j.version>2.15.0</log4j.version>
<ch.qos.logback-access.version>1.2.3</ch.qos.logback-access.version>
<commons-codec.version>1.15</commons-codec.version>
<org.apache.commons-lang3.version>3.12.0</org.apache.commons-lang3.version>
@@ -85,7 +86,7 @@
<!-- jUnit testing -->
<surefire.version>2.22.1</surefire.version>
- <junit-jupiter-api.version>5.7.1</junit-jupiter-api.version>
+ <junit-jupiter-api.version>5.8.2</junit-jupiter-api.version>
<com.squareup.okhttp3.version>4.4.1</com.squareup.okhttp3.version>
<org.powermock.version>2.0.9</org.powermock.version>
@@ -470,6 +471,11 @@
<version>${org.slf4j.version}</version>
</dependency>
<dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-to-slf4j</artifactId>
+ <version>${log4j.version}</version>
+ </dependency>
+ <dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-access</artifactId>
<version>${ch.qos.logback-access.version}</version>