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_core_utils | |
| 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_core_utils')
| -rw-r--r-- | eaaf_core_utils/pom.xml | 16 | 
1 files changed, 16 insertions, 0 deletions
| 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> | 
