ofmc-ui-ng/dependency-reduced-pom.xml

80 lines
2.4 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>
<groupId>OFMCGUI</groupId>
<artifactId>OFMCGUI</artifactId>
<version>1.2.1</version>
<build>
<sourceDirectory>src</sourceDirectory>
<resources>
<resource>
<targetPath>Resources</targetPath>
<directory>src/Resources</directory>
</resource>
<resource>
<targetPath>View</targetPath>
<directory>src/View</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>Pack.Main</mainClass>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<mainClass>Pack.Main</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>javafx</id>
<url>https://nexus.gluonhq.com/nexus/content/repositories/releases/</url>
</repository>
<repository>
<id>javafxml</id>
<url>https://nexus.gluonhq.com/nexus/content/repositories/releases/org/openjfx/javafx.fxml/</url>
</repository>
</repositories>
<properties>
<java.version>11</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>