2013-08-03 05:03:17 +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>OutlawEditor</artifactId>
|
|
|
|
<name>OutlawEditor</name>
|
|
|
|
<packaging>jar</packaging>
|
2023-10-10 00:06:23 +00:00
|
|
|
<version>3.0</version>
|
2016-01-30 19:02:11 +00:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<mainClass>org.badvision.outlaweditor.Application</mainClass>
|
|
|
|
<netbeans.hint.license>apache20</netbeans.hint.license>
|
2023-09-09 01:59:23 +00:00
|
|
|
<javafx.version>21-ea+31</javafx.version>
|
|
|
|
<poi.version>5.2.3</poi.version>
|
2016-01-30 19:02:11 +00:00
|
|
|
</properties>
|
|
|
|
|
2013-08-03 05:03:17 +00:00
|
|
|
<organization>
|
|
|
|
<!-- Used as the 'Vendor' for JNLP generation -->
|
|
|
|
<name>org.badvision</name>
|
|
|
|
</organization>
|
|
|
|
<build>
|
|
|
|
<finalName>OutlawEditor</finalName>
|
|
|
|
<plugins>
|
2016-06-27 04:36:28 +00:00
|
|
|
<plugin>
|
2023-09-09 01:59:23 +00:00
|
|
|
<groupId>com.gluonhq</groupId>
|
|
|
|
<artifactId>gluonfx-maven-plugin</artifactId>
|
|
|
|
<version>1.0.19</version>
|
2016-06-27 04:36:28 +00:00
|
|
|
<configuration>
|
2023-09-09 01:59:23 +00:00
|
|
|
<mainClass>${mainClass}</mainClass>
|
|
|
|
<options>
|
|
|
|
<option>--add-exports</option>
|
|
|
|
<option>javafx.base/com.sun.javafx.event=org.controlsfx.controls</option>
|
|
|
|
<option>--add-exports</option>
|
|
|
|
<option>javafx.controls/com.sun.javafx.scene.control.behavior=org.controlsfx.controls</option>
|
|
|
|
</options>
|
2016-06-27 04:36:28 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2013-08-03 05:03:17 +00:00
|
|
|
<plugin>
|
2023-09-09 01:59:23 +00:00
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-maven-plugin</artifactId>
|
|
|
|
<version>0.0.8</version>
|
2016-12-18 18:48:46 +00:00
|
|
|
<configuration>
|
2023-09-09 01:59:23 +00:00
|
|
|
<mainClass>${mainClass}</mainClass>
|
|
|
|
<options>
|
|
|
|
<option>--add-exports</option>
|
|
|
|
<option>javafx.base/com.sun.javafx.event=org.controlsfx.controls</option>
|
|
|
|
<option>--add-exports</option>
|
|
|
|
<option>javafx.controls/com.sun.javafx.scene.control.behavior=org.controlsfx.controls</option>
|
|
|
|
</options>
|
2016-12-18 18:48:46 +00:00
|
|
|
</configuration>
|
2013-08-03 05:03:17 +00:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
2023-09-09 01:59:23 +00:00
|
|
|
<source>17</source>
|
|
|
|
<target>17</target>
|
2013-08-03 05:03:17 +00:00
|
|
|
</configuration>
|
2023-09-09 01:59:23 +00:00
|
|
|
<version>3.11.0</version>
|
2013-08-03 05:03:17 +00:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2023-09-09 01:59:23 +00:00
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>jaxb2-maven-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
2013-08-03 05:03:17 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2023-09-09 01:59:23 +00:00
|
|
|
<id>xjc</id>
|
2013-08-03 05:03:17 +00:00
|
|
|
<goals>
|
2023-09-09 01:59:23 +00:00
|
|
|
<goal>xjc</goal>
|
2013-08-03 05:03:17 +00:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2023-09-09 01:59:23 +00:00
|
|
|
<configuration>
|
|
|
|
<sources>src/main/resources/jaxb</sources>
|
|
|
|
<packageName>org.badvision.outlaweditor.data.xml</packageName>
|
|
|
|
</configuration>
|
2013-08-03 05:03:17 +00:00
|
|
|
</plugin>
|
2023-10-10 00:06:23 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<version>3.6.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-dependencies</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
|
|
<overWriteReleases>false</overWriteReleases>
|
|
|
|
<overWriteSnapshots>false</overWriteSnapshots>
|
|
|
|
<overWriteIfNewer>true</overWriteIfNewer>
|
|
|
|
<includeScope>compile</includeScope>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2013-08-03 05:03:17 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
2014-02-27 07:48:27 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2021-04-02 20:08:12 +00:00
|
|
|
<version>4.13.2</version>
|
2014-02-27 07:48:27 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
2016-01-30 14:48:46 +00:00
|
|
|
<dependency>
|
2023-09-09 01:59:23 +00:00
|
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
2023-10-10 00:06:23 +00:00
|
|
|
<version>4.0.1</version>
|
2016-01-30 14:48:46 +00:00
|
|
|
</dependency>
|
2016-06-27 00:55:26 +00:00
|
|
|
<dependency>
|
2023-10-10 00:06:23 +00:00
|
|
|
<groupId>org.glassfish.jaxb</groupId>
|
|
|
|
<artifactId>jaxb-runtime</artifactId>
|
2023-09-09 01:59:23 +00:00
|
|
|
<version>4.0.3</version>
|
2016-07-05 22:06:00 +00:00
|
|
|
</dependency>
|
2018-09-15 21:24:24 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.controlsfx</groupId>
|
|
|
|
<artifactId>controlsfx</artifactId>
|
2023-12-28 02:56:14 +00:00
|
|
|
<version>11.2.0</version>
|
2023-09-09 01:59:23 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-controls</artifactId>
|
|
|
|
<version>${javafx.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-web</artifactId>
|
|
|
|
<version>${javafx.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-fxml</artifactId>
|
|
|
|
<version>${javafx.version}</version>
|
2018-09-15 21:24:24 +00:00
|
|
|
</dependency>
|
2013-08-03 05:03:17 +00:00
|
|
|
</dependencies>
|
2016-12-18 18:48:46 +00:00
|
|
|
</project>
|