Praktikum 1: Tests

This commit is contained in:
Johannes Theiner 2018-03-24 16:15:55 +01:00
parent 74a6663c14
commit bc6f5891a3
1 changed files with 17 additions and 0 deletions

17
pom.xml
View File

@ -17,6 +17,23 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-surefire-provider</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.0.1</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>