116 lines
4.5 KiB
XML
116 lines
4.5 KiB
XML
<?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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>fr.cenra.rhomeo</groupId>
|
|
<artifactId>rhomeo</artifactId>
|
|
<version>1.2-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<groupId>fr.cenra.rhomeo</groupId>
|
|
<artifactId>desktop</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Rhomeo desktop</name>
|
|
<description>Rhomeo client application</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>fr.cenra.rhomeo</groupId>
|
|
<artifactId>core</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.cenra.rhomeo</groupId>
|
|
<artifactId>protocol</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.geotoolkit</groupId>
|
|
<artifactId>geotk-widgets-javafx</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
<artifactId>quartz</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.fxmisc.richtext</groupId>
|
|
<artifactId>richtextfx</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
<artifactId>groovy-all</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.geotoolkit</groupId>
|
|
<artifactId>geotk-client-wfs</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.geotoolkit</groupId>
|
|
<artifactId>geotk-jaxp-xsd</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hamcrest</groupId>
|
|
<artifactId>hamcrest-core</artifactId>
|
|
<version>1.3</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<!-- Override final name for jfx:native command to create a friendly-named package -->
|
|
<finalName>Rhomeo</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.zenjava</groupId>
|
|
<artifactId>javafx-maven-plugin</artifactId>
|
|
<configuration>
|
|
<nativeReleaseVersion>${project.version}</nativeReleaseVersion>
|
|
<mainClass>fr.cenra.rhomeo.Launcher</mainClass>
|
|
<needMenu>true</needMenu>
|
|
<jvmArgs>
|
|
<!-- Force GC. G1 can factorize string instances to save
|
|
some memory, which can be useful in a restrained environment as this one. -->
|
|
<jvmArg>-XX:+UseG1GC</jvmArg>
|
|
<!-- Memory management. -->
|
|
<jvmArg>-Xms256m</jvmArg>
|
|
<jvmArg>-Xmx1G</jvmArg>
|
|
<!-- We delegate proxy detection to Java -->
|
|
<jvmArg>-Djava.net.useSystemProxies=true</jvmArg>
|
|
<!-- Force base encoding to avoid problems when exchanging data with central server. -->
|
|
<jvmArg>-Dfile.encoding=UTF-8</jvmArg>
|
|
</jvmArgs>
|
|
<additionalAppResources>
|
|
src/main/deploy/additional
|
|
</additionalAppResources>
|
|
<!-- License agreement. It does not work well for .deb packages.-->
|
|
<bundleArguments>
|
|
<copyright>Copyright (C) 2016, CENRA</copyright>
|
|
<licenseFile>CLUF</licenseFile>
|
|
</bundleArguments>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |