OpenSeSim/pom.xml

40 lines
1.6 KiB
XML
Raw Normal View History

2017-01-05 19:20:44 +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>
2017-01-05 23:18:19 +01:00
<groupId>com.cauwersin</groupId>
2017-01-05 19:31:19 +01:00
<artifactId>SeSim</artifactId>
2017-01-22 21:41:45 +01:00
<version>0.01</version>
2017-01-05 19:20:44 +01:00
<packaging>jar</packaging>
<dependencies>
2017-01-09 17:00:05 +01:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
2017-01-25 02:52:49 +01:00
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20160810</version>
</dependency>
2017-01-05 19:20:44 +01:00
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<name>SeSim</name>
2017-01-27 23:34:00 +01:00
<repositories>
<repository>
<id>unknown-jars-temp-repo</id>
<name>A temporary repository created by NetBeans for libraries and jars it could not identify. Please replace the dependencies in this repository with correct ones and delete this repository.</name>
<url>file:${project.basedir}/lib</url>
</repository>
</repositories>
2017-01-05 19:20:44 +01:00
</project>