2017-12-28 16:40:15 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2023-10-23 05:28:55 +00:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2024-02-21 16:52:06 +00:00
|
|
|
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">
|
2017-12-28 16:40:15 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2017-12-28 17:40:40 +00:00
|
|
|
<groupId>org.8bitbunch</groupId>
|
|
|
|
<artifactId>lawlesslegends</artifactId>
|
2021-04-02 20:18:58 +00:00
|
|
|
<version>3.0-SNAPSHOT</version>
|
2017-12-28 16:40:15 +00:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2017-12-28 17:40:40 +00:00
|
|
|
<name>lawlesslegends</name>
|
2017-12-28 16:40:15 +00:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2017-12-28 17:40:40 +00:00
|
|
|
<mainClass>jace.LawlessLegends</mainClass>
|
2017-12-28 16:40:15 +00:00
|
|
|
<netbeans.hint.license>apache20</netbeans.hint.license>
|
2023-10-23 05:28:55 +00:00
|
|
|
<lwjgl.version>3.3.3</lwjgl.version>
|
2017-12-28 16:40:15 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<organization>
|
|
|
|
<!-- Used as the 'Vendor' for JNLP generation -->
|
|
|
|
<name>org.badvision</name>
|
|
|
|
</organization>
|
|
|
|
|
|
|
|
<build>
|
2017-12-28 17:40:40 +00:00
|
|
|
<finalName>LawlessLegends</finalName>
|
2017-12-28 16:40:15 +00:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2023-07-03 20:44:23 +00:00
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>17</source>
|
|
|
|
<target>17</target>
|
2023-08-01 17:17:29 +00:00
|
|
|
<annotationProcessorPaths>
|
|
|
|
<path>
|
|
|
|
<groupId>org.8bitbunch</groupId>
|
|
|
|
<artifactId>lawlesslegends</artifactId>
|
|
|
|
<version>3.0-SNAPSHOT</version>
|
|
|
|
</path>
|
|
|
|
</annotationProcessorPaths>
|
|
|
|
<annotationProcessors>jace.config.InvokableActionAnnotationProcessor</annotationProcessors>
|
2023-07-03 20:44:23 +00:00
|
|
|
</configuration>
|
|
|
|
<version>3.11.0</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.gluonhq</groupId>
|
|
|
|
<artifactId>gluonfx-maven-plugin</artifactId>
|
2024-01-17 21:50:14 +00:00
|
|
|
<version>1.0.22</version>
|
2023-07-03 20:44:23 +00:00
|
|
|
<configuration>
|
|
|
|
<mainClass>jace.LawlessLegends</mainClass>
|
2024-01-17 21:50:14 +00:00
|
|
|
<resourcesList>
|
|
|
|
<resource>.*</resource>
|
|
|
|
</resourcesList>
|
|
|
|
<releaseConfiguration>
|
|
|
|
<vendor>The 8-Bit Bunch</vendor>
|
|
|
|
<skipSigning>true</skipSigning>
|
|
|
|
</releaseConfiguration>
|
2023-07-03 20:44:23 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-maven-plugin</artifactId>
|
|
|
|
<version>0.0.8</version>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>lawlesslegends/jace.LawlessLegends</mainClass>
|
2023-07-26 15:50:50 +00:00
|
|
|
<executions>
|
2023-10-23 05:28:55 +00:00
|
|
|
<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=*:8000</option>
|
|
|
|
</options>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<!-- Configuration for automatic IDE debugging -->
|
|
|
|
<id>ide-debug</id>
|
|
|
|
<configuration>
|
|
|
|
<options>
|
|
|
|
<option>-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:8000</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>
|
2023-07-03 20:44:23 +00:00
|
|
|
</configuration>
|
2017-12-28 16:40:15 +00:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2023-07-03 20:44:23 +00:00
|
|
|
<groupId>org.moditect</groupId>
|
|
|
|
<artifactId>moditect-maven-plugin</artifactId>
|
|
|
|
<version>1.0.0.Final</version>
|
2017-12-28 16:40:15 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2023-07-03 20:44:23 +00:00
|
|
|
<id>add-module-infos</id>
|
|
|
|
<phase>generate-resources</phase>
|
2017-12-28 16:40:15 +00:00
|
|
|
<goals>
|
2023-07-03 20:44:23 +00:00
|
|
|
<goal>add-module-info</goal>
|
2017-12-28 16:40:15 +00:00
|
|
|
</goals>
|
|
|
|
<configuration>
|
2023-07-03 20:44:23 +00:00
|
|
|
<modules>
|
|
|
|
<module>
|
|
|
|
<artifact>
|
|
|
|
<groupId>org.xerial.thirdparty</groupId>
|
|
|
|
<artifactId>nestedvm</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</artifact>
|
|
|
|
<moduleInfoSource>
|
|
|
|
module nestedvm {
|
2023-10-23 05:28:55 +00:00
|
|
|
exports org.ibex.nestedvm;
|
|
|
|
exports org.ibex.nestedvm.util;
|
2023-07-03 20:44:23 +00:00
|
|
|
}
|
|
|
|
</moduleInfoSource>
|
|
|
|
</module>
|
|
|
|
</modules>
|
|
|
|
<overwriteExistingFiles>true</overwriteExistingFiles>
|
2017-12-28 16:40:15 +00:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
2023-07-03 20:44:23 +00:00
|
|
|
</executions>
|
2017-12-28 16:40:15 +00:00
|
|
|
</plugin>
|
2024-02-21 16:52:06 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<version>0.8.11</version>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>jace/assembly/AcmeCrossAssembler.class</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default-prepare-agent</id>
|
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>default-report</id>
|
|
|
|
<goals>
|
|
|
|
<goal>report</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>default-check</id>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
|
|
|
<rule>
|
|
|
|
<element>BUNDLE</element>
|
|
|
|
<limits>
|
|
|
|
<limit>
|
|
|
|
<counter>COMPLEXITY</counter>
|
|
|
|
<value>COVEREDRATIO</value>
|
|
|
|
<minimum>0.60</minimum>
|
|
|
|
</limit>
|
|
|
|
</limits>
|
|
|
|
</rule>
|
|
|
|
</rules>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2017-12-28 16:40:15 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2023-10-23 05:28:55 +00:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-bom</artifactId>
|
|
|
|
<version>${lwjgl.version}</version>
|
|
|
|
<scope>import</scope>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2017-12-28 16:40:15 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2021-04-02 20:18:58 +00:00
|
|
|
<version>4.13.2</version>
|
2017-12-28 16:40:15 +00:00
|
|
|
<scope>test</scope>
|
2023-10-23 05:28:55 +00:00
|
|
|
</dependency>
|
2017-12-28 16:40:15 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial.thirdparty</groupId>
|
|
|
|
<artifactId>nestedvm</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
2023-07-03 20:44:23 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-base</artifactId>
|
2024-02-10 05:50:53 +00:00
|
|
|
<version>21.0.2</version>
|
2023-07-03 20:44:23 +00:00
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-fxml</artifactId>
|
2024-02-10 05:50:53 +00:00
|
|
|
<version>21.0.2</version>
|
2023-07-03 20:44:23 +00:00
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-web</artifactId>
|
2024-02-10 05:50:53 +00:00
|
|
|
<version>21.0.2</version>
|
2023-07-03 20:44:23 +00:00
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
2024-02-10 05:50:53 +00:00
|
|
|
<!-- <dependency>
|
2023-07-03 20:44:23 +00:00
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-media</artifactId>
|
2024-02-10 05:50:53 +00:00
|
|
|
<version>21.0.2</version>
|
2023-07-03 20:44:23 +00:00
|
|
|
<type>jar</type>
|
2024-02-10 05:50:53 +00:00
|
|
|
</dependency> -->
|
2023-07-03 20:44:23 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-graphics</artifactId>
|
2024-02-10 05:50:53 +00:00
|
|
|
<version>21.0.2</version>
|
2023-07-03 20:44:23 +00:00
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-swing</artifactId>
|
2024-02-10 05:50:53 +00:00
|
|
|
<version>21.0.2</version>
|
2023-07-03 20:44:23 +00:00
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
2023-10-23 05:28:55 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-openal</artifactId>
|
|
|
|
</dependency>
|
2023-10-25 04:30:50 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-stb</artifactId>
|
2023-11-05 04:14:56 +00:00
|
|
|
</dependency>
|
2023-10-23 05:28:55 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl</artifactId>
|
|
|
|
<classifier>${lwjgl.natives}</classifier>
|
|
|
|
</dependency>
|
2023-09-09 01:59:23 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-openal</artifactId>
|
2023-10-23 05:28:55 +00:00
|
|
|
<classifier>${lwjgl.natives}</classifier>
|
2023-09-09 01:59:23 +00:00
|
|
|
</dependency>
|
2023-11-05 04:14:56 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-stb</artifactId>
|
|
|
|
<classifier>${lwjgl.natives}</classifier>
|
|
|
|
</dependency>
|
2024-02-10 05:50:53 +00:00
|
|
|
<!-- <dependency>
|
2023-10-23 05:28:55 +00:00
|
|
|
<groupId>com.badlogicgames.jlayer</groupId>
|
2023-09-09 01:59:23 +00:00
|
|
|
<artifactId>jlayer</artifactId>
|
2023-10-23 05:28:55 +00:00
|
|
|
<version>1.0.2-gdx</version>
|
2024-02-10 05:50:53 +00:00
|
|
|
</dependency> -->
|
2024-02-21 16:52:06 +00:00
|
|
|
</dependencies>
|
2023-10-23 05:28:55 +00:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>lwjgl-natives-linux-amd64</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<family>unix</family>
|
|
|
|
<arch>amd64</arch>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<lwjgl.natives>natives-linux</lwjgl.natives>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>lwjgl-natives-macos-x86_64</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<family>mac</family>
|
|
|
|
<arch>x86_64</arch>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<lwjgl.natives>natives-macos</lwjgl.natives>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>lwjgl-natives-windows-amd64</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<family>windows</family>
|
|
|
|
<arch>amd64</arch>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<lwjgl.natives>natives-windows</lwjgl.natives>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
</project>
|