OpenSeSim/pom.xml

88 lines
3.1 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-02-03 01:56:41 +01:00
<dependency>
<groupId>net.java.linoleum</groupId>
<artifactId>jlfgr</artifactId>
<version>1_0</version>
</dependency>
2017-02-06 08:14:05 +01:00
<dependency>
<groupId>com.github.arnabk</groupId>
<artifactId>pgslookandfeel</artifactId>
<version>1.1.4</version>
</dependency>
2017-02-07 01:53:43 +01:00
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>keytool-api-1.7</artifactId>
<version>1.5</version>
</dependency>
2017-02-13 00:07:50 +01:00
<dependency>
<groupId>org.jdesktop</groupId>
<artifactId>beansbinding</artifactId>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>unknown.binary</groupId>
<artifactId>AbsoluteLayout</artifactId>
<version>SNAPSHOT</version>
</dependency>
2017-03-19 18:07:58 +01:00
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>webstart-maven-plugin</artifactId>
<version>1.0-beta-7</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-03-19 18:07:58 +01:00
<build>
<plugins>
<plugin>
<version>1.0-beta-7</version>
<artifactId>webstart-maven-plugin</artifactId>
<configuration>
<jnlp>
<mainClass>com.cauwersin.SeSim.gui.NewMDIApplication</mainClass>
</jnlp>
</configuration>
</plugin>
</plugins>
</build>
2017-01-05 19:20:44 +01:00
</project>