Added x4o language tasks
This commit is contained in:
parent
48d1bc7f48
commit
f767e9a746
8 changed files with 352 additions and 65 deletions
297
gdxapp4d-lib-x4o/pom.xml
Normal file
297
gdxapp4d-lib-x4o/pom.xml
Normal file
|
|
@ -0,0 +1,297 @@
|
|||
<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>
|
||||
<packaging>pom</packaging>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>lib-install</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-install-plugin</artifactId>
|
||||
<version>2.5.2</version>
|
||||
<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>0.8.7-SNAPSHOT2</version>
|
||||
<packaging>jar</packaging>
|
||||
<file>${project.basedir}/../local-lib/x4o-driver-0.8.7-SNAPSHOT2.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>0.8.7-SNAPSHOT2</version>
|
||||
<packaging>jar</packaging>
|
||||
<file>${project.basedir}/../local-lib/x4o-eld-doc-0.8.7-SNAPSHOT2.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>0.8.7-SNAPSHOT2</version>
|
||||
<packaging>jar</packaging>
|
||||
<file>${project.basedir}/../local-lib/x4o-html-0.8.7-SNAPSHOT2.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>0.8.7-SNAPSHOT2</version>
|
||||
<packaging>jar</packaging>
|
||||
<file>${project.basedir}/../local-lib/x4o-meta-0.8.7-SNAPSHOT2.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>0.8.7-SNAPSHOT2</version>
|
||||
<packaging>jar</packaging>
|
||||
<file>${project.basedir}/../local-lib/x4o-tool-ant-plugin-0.8.7-SNAPSHOT2.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>0.8.7-SNAPSHOT2</version>
|
||||
<packaging>jar</packaging>
|
||||
<file>${project.basedir}/../local-lib/x4o-tool-maven-plugin-0.8.7-SNAPSHOT2.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>0.8.7-SNAPSHOT2</version>
|
||||
<packaging>jar</packaging>
|
||||
<classifier>sources</classifier>
|
||||
<file>${project.basedir}/../local-lib/x4o-driver-0.8.7-SNAPSHOT2-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>0.8.7-SNAPSHOT2</version>
|
||||
<packaging>jar</packaging>
|
||||
<classifier>sources</classifier>
|
||||
<file>${project.basedir}/../local-lib/x4o-eld-doc-0.8.7-SNAPSHOT2-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>0.8.7-SNAPSHOT2</version>
|
||||
<packaging>jar</packaging>
|
||||
<classifier>sources</classifier>
|
||||
<file>${project.basedir}/../local-lib/x4o-html-0.8.7-SNAPSHOT2-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>0.8.7-SNAPSHOT2</version>
|
||||
<packaging>jar</packaging>
|
||||
<classifier>sources</classifier>
|
||||
<file>${project.basedir}/../local-lib/x4o-meta-0.8.7-SNAPSHOT2-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>0.8.7-SNAPSHOT2</version>
|
||||
<packaging>jar</packaging>
|
||||
<classifier>sources</classifier>
|
||||
<file>${project.basedir}/../local-lib/x4o-tool-ant-plugin-0.8.7-SNAPSHOT2-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>0.8.7-SNAPSHOT2</version>
|
||||
<packaging>jar</packaging>
|
||||
<classifier>sources</classifier>
|
||||
<file>${project.basedir}/../local-lib/x4o-tool-maven-plugin-0.8.7-SNAPSHOT2-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="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>6.0.20</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.x4o</groupId>
|
||||
<artifactId>x4o-driver</artifactId>
|
||||
<version>0.8.7-SNAPSHOT2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.x4o</groupId>
|
||||
<artifactId>x4o-eld-doc</artifactId>
|
||||
<version>0.8.7-SNAPSHOT2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.x4o</groupId>
|
||||
<artifactId>x4o-html</artifactId>
|
||||
<version>0.8.7-SNAPSHOT2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.x4o.tool</groupId>
|
||||
<artifactId>x4o-tool-ant-plugin</artifactId>
|
||||
<version>0.8.7-SNAPSHOT2</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
Loading…
Add table
Add a link
Reference in a new issue