Test current state of things, which actually doesn't crash!
[ldk-java] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6
7     <groupId>org.ldk</groupId>
8     <artifactId>ldk-java</artifactId>
9     <version>1.0-SNAPSHOT</version>
10     <dependencies>
11         <dependency>
12             <groupId>org.junit.jupiter</groupId>
13             <artifactId>junit-jupiter</artifactId>
14             <version>RELEASE</version>
15             <scope>test</scope>
16         </dependency>
17         <dependency>
18             <groupId>org.junit.jupiter</groupId>
19             <artifactId>junit-jupiter</artifactId>
20             <version>RELEASE</version>
21             <scope>test</scope>
22         </dependency>
23     </dependencies>
24     <properties>
25         <maven.compiler.source>1.8</maven.compiler.source>
26         <maven.compiler.target>1.8</maven.compiler.target>
27     </properties>
28
29 </project>