2014-09-07 21:10:04 +00: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>org.badvision</groupId>
|
|
|
|
<artifactId>jace</artifactId>
|
|
|
|
<version>2.0-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>jace</name>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2015-03-29 05:30:43 +00:00
|
|
|
<mainClass>jace.JaceApplication</mainClass>
|
2016-02-06 21:58:45 +00:00
|
|
|
<netbeans.hint.license>apache20</netbeans.hint.license>
|
2014-09-07 21:10:04 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<organization>
|
2016-02-06 21:58:45 +00:00
|
|
|
<!-- Used as the 'Vendor' for JNLP generation -->
|
|
|
|
<name>org.badvision</name>
|
2014-09-07 21:10:04 +00:00
|
|
|
</organization>
|
|
|
|
|
|
|
|
<build>
|
2016-02-06 21:58:45 +00:00
|
|
|
<finalName>Jace</finalName>
|
2014-09-07 21:10:04 +00:00
|
|
|
<plugins>
|
2015-12-21 04:44:23 +00:00
|
|
|
<plugin>
|
2014-09-07 21:10:04 +00:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
2015-07-15 06:29:37 +00:00
|
|
|
<version>2.10</version>
|
2014-09-07 21:10:04 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>unpack-dependencies</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<excludeScope>system</excludeScope>
|
|
|
|
<excludeGroupIds>junit,org.mockito,org.hamcrest</excludeGroupIds>
|
|
|
|
<outputDirectory>${project.build.directory}/classes</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2015-12-21 04:44:23 +00:00
|
|
|
</plugin>
|
2016-02-06 21:58:45 +00:00
|
|
|
<plugin>
|
2014-09-07 21:10:04 +00:00
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
2016-02-06 21:58:45 +00:00
|
|
|
<version>1.4.0</version>
|
2014-09-07 21:10:04 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>unpack-dependencies</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>exec</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2016-02-06 21:58:45 +00:00
|
|
|
<executable>${java.home}/../bin/javapackager</executable>
|
2014-09-07 21:10:04 +00:00
|
|
|
<arguments>
|
|
|
|
<argument>-createjar</argument>
|
|
|
|
<argument>-nocss2bin</argument>
|
|
|
|
<argument>-appclass</argument>
|
|
|
|
<argument>${mainClass}</argument>
|
|
|
|
<argument>-srcdir</argument>
|
|
|
|
<argument>${project.build.directory}/classes</argument>
|
|
|
|
<argument>-outdir</argument>
|
|
|
|
<argument>${project.build.directory}</argument>
|
|
|
|
<argument>-outfile</argument>
|
|
|
|
<argument>${project.build.finalName}.jar</argument>
|
|
|
|
</arguments>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2016-02-06 21:58:45 +00:00
|
|
|
</plugin>
|
2014-09-07 21:10:04 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
2016-02-06 21:58:45 +00:00
|
|
|
<version>3.5</version>
|
2014-09-07 21:10:04 +00:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2015-02-02 06:52:31 +00:00
|
|
|
<dependencies>
|
2015-03-29 05:30:43 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.reflections</groupId>
|
|
|
|
<artifactId>reflections</artifactId>
|
|
|
|
<version>0.9.9</version>
|
|
|
|
</dependency>
|
2015-07-15 06:29:37 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.10</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-11-05 03:40:46 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial.thirdparty</groupId>
|
|
|
|
<artifactId>nestedvm</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
2015-02-02 06:52:31 +00:00
|
|
|
</dependencies>
|
2014-09-07 21:10:04 +00:00
|
|
|
</project>
|