diff options
| author | Thomas <> | 2022-01-27 09:05:28 +0100 | 
|---|---|---|
| committer | Thomas <> | 2022-01-27 09:05:28 +0100 | 
| commit | c023cb0e9a065499974574abcae79136b2c61e88 (patch) | |
| tree | db333a6cad4b88e00be585d5c276c50b9b8fc388 /eaaf_core_utils | |
| parent | e123bad9e4c49102ef7a4d98396c0e252e2b4759 (diff) | |
| download | EAAF-Components-c023cb0e9a065499974574abcae79136b2c61e88.tar.gz EAAF-Components-c023cb0e9a065499974574abcae79136b2c61e88.tar.bz2 EAAF-Components-c023cb0e9a065499974574abcae79136b2c61e88.zip | |
build(test): fix wrong scope of jUnit dependencies
Diffstat (limited to 'eaaf_core_utils')
| -rw-r--r-- | eaaf_core_utils/pom.xml | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/eaaf_core_utils/pom.xml b/eaaf_core_utils/pom.xml index ad44765e..f3710033 100644 --- a/eaaf_core_utils/pom.xml +++ b/eaaf_core_utils/pom.xml @@ -136,18 +136,19 @@      <dependency>        <groupId>ch.qos.logback</groupId>        <artifactId>logback-classic</artifactId> -      <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> +      <scope>test</scope>      </dependency>      <dependency>        <groupId>org.junit.jupiter</groupId>        <artifactId>junit-jupiter-migrationsupport</artifactId>        <version>${junit-jupiter-api.version}</version> +      <scope>test</scope>      </dependency>    </dependencies> | 
