You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
151 lines
4.1 KiB
151 lines
4.1 KiB
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>health_data_export</groupId>
|
|
<artifactId>health_data_export</artifactId>
|
|
<version>7</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>eclipse cbi</id>
|
|
<url>https://repo.eclipse.org/content/repositories/cbi-releases</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>eclipse cbi</id>
|
|
<url>https://repo.eclipse.org/content/repositories/cbi-releases</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
<build>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<resources>
|
|
<resource>
|
|
<directory>src</directory>
|
|
<excludes>
|
|
<exclude>**/*.java</exclude>
|
|
</excludes>
|
|
</resource>
|
|
</resources>
|
|
|
|
|
|
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.eclipse.cbi.maven.plugins</groupId>
|
|
<artifactId>eclipse-dmg-packager</artifactId>
|
|
<version>1.3.0</version>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
<configuration>
|
|
<source>8</source>
|
|
<target>8</target>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.eclipse.cbi.maven.plugins</groupId>
|
|
<artifactId>eclipse-dmg-packager</artifactId>
|
|
<version>1.3.0</version>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-maven-plugin</artifactId>
|
|
<version>0.0.5</version>
|
|
<configuration>
|
|
<mainClass>health_data_export/application.SuperMain</mainClass>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-eclipse-plugin</artifactId>
|
|
<version>2.9</version>
|
|
<configuration>
|
|
<downloadSources>true</downloadSources>
|
|
<downloadJavadocs>false</downloadJavadocs>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>2.3</version>
|
|
<executions>
|
|
<!-- Run shade goal on package phase -->
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<transformers>
|
|
<!-- add Main-Class to manifest file -->
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
<mainClass>application.SuperMain</mainClass>
|
|
</transformer>
|
|
</transformers>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-graphics</artifactId>
|
|
<version>11</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-controls</artifactId>
|
|
<version>11</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.eclipse.cbi.maven.plugins</groupId>
|
|
<artifactId>eclipse-dmg-packager</artifactId>
|
|
<version>1.3.0</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/javax.xml.parsers/jaxp-api -->
|
|
<dependency>
|
|
<groupId>javax.xml.parsers</groupId>
|
|
<artifactId>jaxp-api</artifactId>
|
|
<version>1.4.5</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.openjfx/javafx -->
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx</artifactId>
|
|
<version>11</version>
|
|
<type>pom</type>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/dom4j/dom4j -->
|
|
<dependency>
|
|
<groupId>dom4j</groupId>
|
|
<artifactId>dom4j</artifactId>
|
|
<version>1.6.1</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|