2018-03-15 16:41:56 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>de.joethei.hs</groupId>
|
|
|
|
<artifactId>java2</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
2018-03-23 16:32:49 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2018-03-23 13:14:40 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2018-03-23 16:32:49 +01:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<version>RELEASE</version>
|
2018-03-23 13:14:40 +01:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2018-03-15 16:41:56 +01:00
|
|
|
|
|
|
|
</project>
|