2026-01-22 13:08:16 +01:00
|
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>love.distributedrebirth.nx01</groupId>
|
|
|
|
|
<artifactId>nx01</artifactId>
|
|
|
|
|
<version>5786.SHEVAT〄.1-SNAPSHOT</version>
|
|
|
|
|
</parent>
|
2026-01-23 11:54:16 +01:00
|
|
|
<artifactId>nx01-jpp-nether-tone</artifactId>
|
2026-01-22 13:08:16 +01:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>love.distributedrebirth.nx01</groupId>
|
|
|
|
|
<artifactId>nx01-kode-gen</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>add-source</id>
|
|
|
|
|
<phase>process-sources</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>add-source</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<sources>
|
2026-01-26 02:29:08 +01:00
|
|
|
<source>${project.build.directory}/kode-nether-tone</source>
|
2026-01-22 13:08:16 +01:00
|
|
|
</sources>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2026-01-23 11:11:15 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>nx01-generate-nether</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>run</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
|
<configuration>
|
|
|
|
|
<target>
|
|
|
|
|
<java classname="love.distributedrebirth.nx01.kode.generator.KodeGen" fork="true"
|
|
|
|
|
failonerror="true">
|
|
|
|
|
<!-- using test CP so local module gets resolved correctly -->
|
|
|
|
|
<classpath refid="maven.test.classpath" />
|
2026-01-26 02:29:08 +01:00
|
|
|
<arg line="nether-tone" />
|
2026-01-23 11:11:15 +01:00
|
|
|
<arg line="generate" />
|
|
|
|
|
</java>
|
|
|
|
|
</target>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2026-01-22 13:08:16 +01:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2026-01-23 11:54:16 +01:00
|
|
|
</project>
|