2018-09-04 12:12:41 +02:00
|
|
|
<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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>it.cavallium</groupId>
|
|
|
|
<artifactId>warppi</artifactId>
|
2018-10-15 23:10:44 +02:00
|
|
|
<version>0.9.0a3</version>
|
2018-09-04 12:12:41 +02:00
|
|
|
</parent>
|
|
|
|
<artifactId>warppi-desktop</artifactId>
|
|
|
|
|
|
|
|
<name>WarpPI Calculator Desktop</name>
|
|
|
|
<description>WarpPI Calculator desktop project</description>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.cavallium</groupId>
|
|
|
|
<artifactId>warppi-core</artifactId>
|
2018-10-15 23:10:44 +02:00
|
|
|
<version>0.9.0a3</version>
|
2018-09-04 12:12:41 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-09-11 01:12:54 +02:00
|
|
|
<groupId>it.cavallium</groupId>
|
2018-09-22 10:29:40 +02:00
|
|
|
<artifactId>warppi-engine-jogl</artifactId>
|
2018-10-15 23:10:44 +02:00
|
|
|
<version>0.9.0a3</version>
|
2018-09-04 12:12:41 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.fusesource.jansi</groupId>
|
|
|
|
<artifactId>jansi</artifactId>
|
|
|
|
<version>1.17.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.lingala.zip4j</groupId>
|
|
|
|
<artifactId>zip4j</artifactId>
|
|
|
|
<version>1.3.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-09-28 21:59:12 +02:00
|
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
|
|
<artifactId>org.eclipse.jdt.core</artifactId>
|
|
|
|
<version>3.14.0.v20171206-0802</version>
|
2018-09-04 12:12:41 +02:00
|
|
|
</dependency>
|
2018-09-11 01:12:54 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>ar.com.hjg</groupId>
|
|
|
|
<artifactId>pngj</artifactId>
|
|
|
|
</dependency>
|
2018-09-04 12:12:41 +02:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>../rules/src/main/java</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2018-10-15 19:37:56 +02:00
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2018-09-04 12:12:41 +02:00
|
|
|
</plugin>
|
2018-09-29 02:11:24 +02:00
|
|
|
<plugin>
|
2018-10-15 19:37:56 +02:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2018-09-29 02:11:24 +02:00
|
|
|
</plugin>
|
2018-10-15 19:37:56 +02:00
|
|
|
|
2018-09-04 12:12:41 +02:00
|
|
|
<!-- Maven Assembly Plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>2.4.1</version>
|
|
|
|
<configuration>
|
|
|
|
<!-- get all project dependencies -->
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
<!-- MainClass in mainfest make a executable jar -->
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>it.cavallium.warppi.desktop.DesktopBoot</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-assembly</id>
|
|
|
|
<!-- bind to the packaging phase -->
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>3.0.2</version>
|
|
|
|
<configuration>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|