summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorManuel Bentele2020-12-03 09:28:01 +0100
committerManuel Bentele2021-01-05 14:23:36 +0100
commitb111d567f22403c5e6efca0e44b868cab43f5910 (patch)
tree81fd580b80284de83023649d0103f02f8fc132fc /pom.xml
parentRemove unused code and classes (diff)
downloadmaster-sync-shared-b111d567f22403c5e6efca0e44b868cab43f5910.tar.gz
master-sync-shared-b111d567f22403c5e6efca0e44b868cab43f5910.tar.xz
master-sync-shared-b111d567f22403c5e6efca0e44b868cab43f5910.zip
Add JUnit 5 and its Maven integration for tests
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml11
1 files changed, 8 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index 32b6675..3ea3522 100644
--- a/pom.xml
+++ b/pom.xml
@@ -76,6 +76,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>
</build>
@@ -93,9 +98,9 @@
<scope>compile</scope>
</dependency>
<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>