mirror of
https://github.com/badvision/lawless-legends.git
synced 2024-11-18 23:07:53 +00:00
140 lines
5.7 KiB
XML
140 lines
5.7 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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.badvision</groupId>
|
|
<artifactId>OutlawEditor</artifactId>
|
|
<name>OutlawEditor</name>
|
|
<packaging>jar</packaging>
|
|
<version>3.0</version>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<mainClass>org.badvision.outlaweditor.Application</mainClass>
|
|
<netbeans.hint.license>apache20</netbeans.hint.license>
|
|
<javafx.version>21-ea+31</javafx.version>
|
|
<poi.version>5.2.3</poi.version>
|
|
</properties>
|
|
|
|
<organization>
|
|
<!-- Used as the 'Vendor' for JNLP generation -->
|
|
<name>org.badvision</name>
|
|
</organization>
|
|
<build>
|
|
<finalName>OutlawEditor</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.gluonhq</groupId>
|
|
<artifactId>gluonfx-maven-plugin</artifactId>
|
|
<version>1.0.19</version>
|
|
<configuration>
|
|
<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>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-maven-plugin</artifactId>
|
|
<version>0.0.8</version>
|
|
<configuration>
|
|
<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>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>17</source>
|
|
<target>17</target>
|
|
</configuration>
|
|
<version>3.11.0</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>jaxb2-maven-plugin</artifactId>
|
|
<version>3.1.0</version>
|
|
<executions>
|
|
<execution>
|
|
<id>xjc</id>
|
|
<goals>
|
|
<goal>xjc</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<sources>src/main/resources/jaxb</sources>
|
|
<packageName>org.badvision.outlaweditor.data.xml</packageName>
|
|
</configuration>
|
|
</plugin>
|
|
<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>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.13.2</version>
|
|
<scope>test</scope>
|
|
<type>jar</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
|
<version>4.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.glassfish.jaxb</groupId>
|
|
<artifactId>jaxb-runtime</artifactId>
|
|
<version>4.0.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.controlsfx</groupId>
|
|
<artifactId>controlsfx</artifactId>
|
|
<version>11.2.0</version>
|
|
</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>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |