diff options
author | Thomas <> | 2021-12-12 11:57:06 +0100 |
---|---|---|
committer | Thomas <> | 2021-12-12 11:57:06 +0100 |
commit | f7518ec78431c6ff27984a88fe7a3d9631aabfef (patch) | |
tree | a774d761d4ee95fb758529694fb1b27e3138dbd5 /eaaf_modules | |
parent | cad02a4293b734efb94c14ee9d0cb4e6191e1e89 (diff) | |
download | EAAF-Components-f7518ec78431c6ff27984a88fe7a3d9631aabfef.tar.gz EAAF-Components-f7518ec78431c6ff27984a88fe7a3d9631aabfef.tar.bz2 EAAF-Components-f7518ec78431c6ff27984a88fe7a3d9631aabfef.zip |
update some more third-party libs
Diffstat (limited to 'eaaf_modules')
-rw-r--r-- | eaaf_modules/eaaf_module_pvp2_core/pom.xml | 18 |
1 files changed, 17 insertions, 1 deletions
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> |