304 lines
11 KiB
XML
304 lines
11 KiB
XML
<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.gdxapp4d</groupId>
|
|
<artifactId>gdxapp4d</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>gdxapp4d-lib-x4o</artifactId>
|
|
<name>GDXApp⁴ᴰ-Lib-X4O</name>
|
|
<packaging>pom</packaging>
|
|
<profiles>
|
|
<profile>
|
|
<id>lib-install</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>deploy-local-x4o-driver</id>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>install-file</goal>
|
|
</goals>
|
|
<configuration>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-driver</artifactId>
|
|
<version>${x4o.version}</version>
|
|
<packaging>jar</packaging>
|
|
<file>${project.basedir}/../local-lib/x4o-driver-${x4o.version}.jar</file>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>deploy-local-x4o-eld-doc</id>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>install-file</goal>
|
|
</goals>
|
|
<configuration>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-eld-doc</artifactId>
|
|
<version>${x4o.version}</version>
|
|
<packaging>jar</packaging>
|
|
<file>${project.basedir}/../local-lib/x4o-eld-doc-${x4o.version}.jar</file>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>deploy-local-x4o-html</id>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>install-file</goal>
|
|
</goals>
|
|
<configuration>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-html</artifactId>
|
|
<version>${x4o.version}</version>
|
|
<packaging>jar</packaging>
|
|
<file>${project.basedir}/../local-lib/x4o-html-${x4o.version}.jar</file>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>deploy-local-x4o-meta</id>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>install-file</goal>
|
|
</goals>
|
|
<configuration>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-meta</artifactId>
|
|
<version>${x4o.version}</version>
|
|
<packaging>jar</packaging>
|
|
<file>${project.basedir}/../local-lib/x4o-meta-${x4o.version}.jar</file>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>deploy-local-x4o-tool-ant-plugin</id>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>install-file</goal>
|
|
</goals>
|
|
<configuration>
|
|
<groupId>org.x4o.tool</groupId>
|
|
<artifactId>x4o-tool-ant-plugin</artifactId>
|
|
<version>${x4o.version}</version>
|
|
<packaging>jar</packaging>
|
|
<file>${project.basedir}/../local-lib/x4o-tool-ant-plugin-${x4o.version}.jar</file>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>deploy-local-x4o-tool-maven-plugin</id>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>install-file</goal>
|
|
</goals>
|
|
<configuration>
|
|
<groupId>org.x4o.tool</groupId>
|
|
<artifactId>x4o-tool-maven-plugin</artifactId>
|
|
<version>${x4o.version}</version>
|
|
<packaging>jar</packaging>
|
|
<file>${project.basedir}/../local-lib/x4o-tool-maven-plugin-${x4o.version}.jar</file>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>deploy-local-x4o-driver-sources</id>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>install-file</goal>
|
|
</goals>
|
|
<configuration>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-driver</artifactId>
|
|
<version>${x4o.version}</version>
|
|
<packaging>jar</packaging>
|
|
<classifier>sources</classifier>
|
|
<file>${project.basedir}/../local-lib/x4o-driver-${x4o.version}-sources.jar</file>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>deploy-local-x4o-eld-doc-sources</id>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>install-file</goal>
|
|
</goals>
|
|
<configuration>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-eld-doc</artifactId>
|
|
<version>${x4o.version}</version>
|
|
<packaging>jar</packaging>
|
|
<classifier>sources</classifier>
|
|
<file>${project.basedir}/../local-lib/x4o-eld-doc-${x4o.version}-sources.jar</file>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>deploy-local-x4o-html-sources</id>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>install-file</goal>
|
|
</goals>
|
|
<configuration>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-html</artifactId>
|
|
<version>${x4o.version}</version>
|
|
<packaging>jar</packaging>
|
|
<classifier>sources</classifier>
|
|
<file>${project.basedir}/../local-lib/x4o-html-${x4o.version}-sources.jar</file>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>deploy-local-x4o-meta-sources</id>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>install-file</goal>
|
|
</goals>
|
|
<configuration>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-meta</artifactId>
|
|
<version>${x4o.version}</version>
|
|
<packaging>jar</packaging>
|
|
<classifier>sources</classifier>
|
|
<file>${project.basedir}/../local-lib/x4o-meta-${x4o.version}-sources.jar</file>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>deploy-local-x4o-tool-ant-plugin-sources</id>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>install-file</goal>
|
|
</goals>
|
|
<configuration>
|
|
<groupId>org.x4o.tool</groupId>
|
|
<artifactId>x4o-tool-ant-plugin</artifactId>
|
|
<version>${x4o.version}</version>
|
|
<packaging>jar</packaging>
|
|
<classifier>sources</classifier>
|
|
<file>${project.basedir}/../local-lib/x4o-tool-ant-plugin-${x4o.version}-sources.jar</file>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>deploy-local-x4o-tool-maven-plugin-sources</id>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>install-file</goal>
|
|
</goals>
|
|
<configuration>
|
|
<groupId>org.x4o.tool</groupId>
|
|
<artifactId>x4o-tool-maven-plugin</artifactId>
|
|
<version>${x4o.version}</version>
|
|
<packaging>jar</packaging>
|
|
<classifier>sources</classifier>
|
|
<file>${project.basedir}/../local-lib/x4o-tool-maven-plugin-${x4o.version}-sources.jar</file>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
<profile>
|
|
<id>x4o-tasks</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>compile</phase>
|
|
<configuration>
|
|
<target>
|
|
<taskdef name="x4oTask" classname="org.x4o.tool.ant.plugin.X4OTask" classpathref="maven.runtime.classpath"></taskdef>
|
|
<mkdir dir="target/x4o-eld" />
|
|
<mkdir dir="target/x4o-xsd" />
|
|
<x4oTask languageName="cel" taskId="eld-doc">
|
|
<x4oTaskProperty key="http://x4o.org/properties/eld-doc/output/path" value="target/x4o-eld/cel" />
|
|
</x4oTask>
|
|
<x4oTask languageName="cel" taskId="eld-xsd">
|
|
<x4oTaskProperty key="http://x4o.org/properties/eld-xsd/output/path" value="target/x4o-xsd/cel" />
|
|
</x4oTask>
|
|
<x4oTask languageName="eld" taskId="eld-doc">
|
|
<x4oTaskProperty key="http://x4o.org/properties/eld-doc/output/path" value="target/x4o-eld/eld" />
|
|
</x4oTask>
|
|
<x4oTask languageName="eld" taskId="eld-xsd">
|
|
<x4oTaskProperty key="http://x4o.org/properties/eld-xsd/output/path" value="target/x4o-xsd/eld" />
|
|
</x4oTask>
|
|
<x4oTask languageName="warp-ship" taskId="eld-doc">
|
|
<x4oTaskProperty key="http://x4o.org/properties/eld-doc/output/path" value="target/x4o-eld/warp-ship" />
|
|
</x4oTask>
|
|
<x4oTask languageName="warp-ship" taskId="eld-xsd">
|
|
<x4oTaskProperty key="http://x4o.org/properties/eld-xsd/output/path" value="target/x4o-xsd/warp-ship" />
|
|
</x4oTask>
|
|
<x4oTask languageName="warp-hash" taskId="eld-doc">
|
|
<x4oTaskProperty key="http://x4o.org/properties/eld-doc/output/path" value="target/x4o-eld/warp-hash" />
|
|
</x4oTask>
|
|
<x4oTask languageName="warp-hash" taskId="eld-xsd">
|
|
<x4oTaskProperty key="http://x4o.org/properties/eld-xsd/output/path" value="target/x4o-xsd/warp-hash" />
|
|
</x4oTask>
|
|
<x4oTask languageName="warp-sea" taskId="eld-doc">
|
|
<x4oTaskProperty key="http://x4o.org/properties/eld-doc/output/path" value="target/x4o-eld/warp-sea" />
|
|
</x4oTask>
|
|
<x4oTask languageName="warp-sea" taskId="eld-xsd">
|
|
<x4oTaskProperty key="http://x4o.org/properties/eld-xsd/output/path" value="target/x4o-xsd/warp-sea" />
|
|
</x4oTask>
|
|
<x4oTask languageName="warp-core" taskId="eld-doc">
|
|
<x4oTaskProperty key="http://x4o.org/properties/eld-doc/output/path" value="target/x4o-eld/warp-core" />
|
|
</x4oTask>
|
|
<x4oTask languageName="warp-core" taskId="eld-xsd">
|
|
<x4oTaskProperty key="http://x4o.org/properties/eld-xsd/output/path" value="target/x4o-xsd/warp-core" />
|
|
</x4oTask>
|
|
<x4oTask languageName="unicode4d-atlas" taskId="eld-doc">
|
|
<x4oTaskProperty key="http://x4o.org/properties/eld-doc/output/path" value="target/x4o-eld/unicode4d-atlas" />
|
|
</x4oTask>
|
|
<x4oTask languageName="unicode4d-atlas" taskId="eld-xsd">
|
|
<x4oTaskProperty key="http://x4o.org/properties/eld-xsd/output/path" value="target/x4o-xsd/unicode4d-atlas" />
|
|
</x4oTask>
|
|
</target>
|
|
</configuration>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>love.distributedrebirth.gdxapp4d</groupId>
|
|
<artifactId>gdxapp4d-lib-warpme</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>love.distributedrebirth.gdxapp4d</groupId>
|
|
<artifactId>gdxapp4d-lib-unicodezd</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tomcat</groupId>
|
|
<artifactId>jasper-el</artifactId>
|
|
<version>${jasper-el.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-driver</artifactId>
|
|
<version>${x4o.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-eld-doc</artifactId>
|
|
<version>${x4o.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-html</artifactId>
|
|
<version>${x4o.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.x4o.tool</groupId>
|
|
<artifactId>x4o-tool-ant-plugin</artifactId>
|
|
<version>${x4o.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project> |