mirror of
https://github.com/badvision/lawless-legends.git
synced 2024-11-18 23:07:53 +00:00
187 lines
7.5 KiB
XML
187 lines
7.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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.8bitbunch</groupId>
|
|
<artifactId>lawlesslegends</artifactId>
|
|
<version>3.0-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>lawlesslegends</name>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<mainClass>jace.LawlessLegends</mainClass>
|
|
<netbeans.hint.license>apache20</netbeans.hint.license>
|
|
</properties>
|
|
|
|
<organization>
|
|
<!-- Used as the 'Vendor' for JNLP generation -->
|
|
<name>org.badvision</name>
|
|
</organization>
|
|
|
|
<build>
|
|
<finalName>LawlessLegends</finalName>
|
|
<plugins>
|
|
<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>com.gluonhq</groupId>
|
|
<artifactId>gluonfx-maven-plugin</artifactId>
|
|
<version>1.0.18</version>
|
|
<configuration>
|
|
<mainClass>jace.LawlessLegends</mainClass>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-maven-plugin</artifactId>
|
|
<version>0.0.8</version>
|
|
<configuration>
|
|
<mainClass>lawlesslegends/jace.LawlessLegends</mainClass>
|
|
<executions>
|
|
<execution>
|
|
<!-- Default configuration for running -->
|
|
<!-- Usage: mvn clean javafx:run -->
|
|
<id>default-cli</id>
|
|
</execution>
|
|
<execution>
|
|
<!-- Configuration for manual attach debugging -->
|
|
<!-- Usage: mvn clean javafx:run@debug -->
|
|
<id>debug</id>
|
|
<configuration>
|
|
<options>
|
|
<option>-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=localhost:8000</option>
|
|
</options>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<!-- Configuration for automatic IDE debugging -->
|
|
<id>ide-debug</id>
|
|
<configuration>
|
|
<options>
|
|
<option>-agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address}</option>
|
|
</options>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<!-- Configuration for automatic IDE profiling -->
|
|
<id>ide-profile</id>
|
|
<configuration>
|
|
<options>
|
|
<option>${profiler.jvmargs.arg1}</option>
|
|
<option>${profiler.jvmargs.arg2}</option>
|
|
<option>${profiler.jvmargs.arg3}</option>
|
|
<option>${profiler.jvmargs.arg4}</option>
|
|
<option>${profiler.jvmargs.arg5}</option>
|
|
</options>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.moditect</groupId>
|
|
<artifactId>moditect-maven-plugin</artifactId>
|
|
<version>1.0.0.Final</version>
|
|
<executions>
|
|
<execution>
|
|
<id>add-module-infos</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>add-module-info</goal>
|
|
</goals>
|
|
<configuration>
|
|
<modules>
|
|
<module>
|
|
<artifact>
|
|
<groupId>org.xerial.thirdparty</groupId>
|
|
<artifactId>nestedvm</artifactId>
|
|
<version>1.0</version>
|
|
</artifact>
|
|
<moduleInfoSource>
|
|
module nestedvm {
|
|
exports org.ibex.nestedvm;
|
|
exports org.ibex.nestedvm.util;
|
|
}
|
|
</moduleInfoSource>
|
|
</module>
|
|
<module>
|
|
<artifact>
|
|
<groupId>org.reflections</groupId>
|
|
<artifactId>reflections</artifactId>
|
|
<version>0.10.2</version>
|
|
</artifact>
|
|
<moduleInfoSource>
|
|
module reflections {
|
|
exports org.reflections;
|
|
}
|
|
</moduleInfoSource>
|
|
</module>
|
|
</modules>
|
|
<overwriteExistingFiles>true</overwriteExistingFiles>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.13.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.xerial.thirdparty</groupId>
|
|
<artifactId>nestedvm</artifactId>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-base</artifactId>
|
|
<version>20</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-fxml</artifactId>
|
|
<version>20</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-web</artifactId>
|
|
<version>20</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-media</artifactId>
|
|
<version>20</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-graphics</artifactId>
|
|
<version>20</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-swing</artifactId>
|
|
<version>18</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|