summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorManuel Bentele2021-03-12 10:35:51 +0100
committerManuel Bentele2021-03-12 10:35:51 +0100
commit3c0cfc6c05ee60e89f539a06214b36d4b2900b30 (patch)
tree5aef655cbe3cfd636e921c5cb875c6cb866df44c /pom.xml
parentFix warnings (diff)
downloadmasterserver-3c0cfc6c05ee60e89f539a06214b36d4b2900b30.tar.gz
masterserver-3c0cfc6c05ee60e89f539a06214b36d4b2900b30.tar.xz
masterserver-3c0cfc6c05ee60e89f539a06214b36d4b2900b30.zip
Add support of Junit 5 and refactor unit tests
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml17
1 files changed, 14 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index 871ebf0..935611b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -66,6 +66,11 @@
<workspaceCodeStylesURL>file://${basedir}/extras/eclipse-code-style.xml</workspaceCodeStylesURL>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>3.0.0-M5</version>
+ </plugin>
</plugins>
<resources>
<resource>
@@ -79,9 +84,15 @@
<dependencies>
<dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.12</version>
+ <groupId>org.junit.jupiter</groupId>
+ <artifactId>junit-jupiter-engine</artifactId>
+ <version>5.5.2</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.junit.jupiter</groupId>
+ <artifactId>junit-jupiter-params</artifactId>
+ <version>5.5.2</version>
<scope>test</scope>
</dependency>
<dependency>