diff options
author | Martin Stockhammer <martin_s@apache.org> | 2019-10-03 17:43:29 +0200 |
---|---|---|
committer | Martin Stockhammer <martin_s@apache.org> | 2019-10-03 17:43:29 +0200 |
commit | 7a4bc877e2033f9d01884f71b03be02e266f5d61 (patch) | |
tree | 788625211824f93853826a34d9930f720c7e5518 /pom.xml | |
parent | 76f47ea2033b09c145295799f6d8b64f7a02a77f (diff) | |
download | archiva-7a4bc877e2033f9d01884f71b03be02e266f5d61.tar.gz archiva-7a4bc877e2033f9d01884f71b03be02e266f5d61.zip |
Migration to junit 5
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 48 |
1 files changed, 45 insertions, 3 deletions
@@ -1677,13 +1677,55 @@ <artifactId>metrics-core</artifactId> <version>${metrics-core.version}</version> </dependency> + + <!-- JUNIT 5 --> + <dependency> + <groupId>org.junit.platform</groupId> + <artifactId>junit-platform-launcher</artifactId> + <version>1.5.2</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.platform</groupId> + <artifactId>junit-platform-console-standalone</artifactId> + <version>1.5.2</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-engine</artifactId> + <version>5.5.2</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.vintage</groupId> + <artifactId>junit-vintage-engine</artifactId> + <version>5.5.2</version> + <scope>test</scope> + </dependency> + </dependencies> </dependencyManagement> <dependencies> <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> + <groupId>org.junit.platform</groupId> + <artifactId>junit-platform-launcher</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.platform</groupId> + <artifactId>junit-platform-console-standalone</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-engine</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.vintage</groupId> + <artifactId>junit-vintage-engine</artifactId> <scope>test</scope> </dependency> <dependency> @@ -1975,7 +2017,7 @@ <plugin> <groupId>org.gaul</groupId> <artifactId>modernizer-maven-plugin</artifactId> - <version>1.5.0</version> + <version>1.9.0</version> <configuration> <javaVersion>1.8</javaVersion> </configuration> |