Added x4o language tasks

This commit is contained in:
Willem Cazander 2022-10-14 03:18:00 +02:00
parent 48d1bc7f48
commit f767e9a746
8 changed files with 352 additions and 65 deletions

41
pom.xml
View file

@ -35,6 +35,7 @@
<module>gdxapp4d-chain-mod-unitxc</module>
<module>gdxapp4d-chain-mod-vrgem4</module>
<module>gdxapp4d-chain-mod-vrsys5</module>
<module>gdxapp4d-lib-x4o</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@ -158,6 +159,20 @@
net.forwardfire.unitxc.module.derived,
net.forwardfire.unitxc.named
</unitxc.packages>
<lang3.packages>
org.apache.commons.lang3,
org.apache.commons.lang3.builder,
org.apache.commons.lang3.concurrent,
org.apache.commons.lang3.event,
org.apache.commons.lang3.exception,
org.apache.commons.lang3.math,
org.apache.commons.lang3.mutable,
org.apache.commons.lang3.reflect,
org.apache.commons.lang3.text,
org.apache.commons.lang3.text.translate,
org.apache.commons.lang3.time,
org.apache.commons.lang3.tuple
</lang3.packages>
</properties>
<dependencyManagement>
<dependencies>
@ -186,6 +201,11 @@
<artifactId>x4o-driver</artifactId>
<version>0.8.7-SNAPSHOT2</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>jasper-el</artifactId>
<version>6.0.20</version>
</dependency>
<dependency>
<groupId>io.github.spair</groupId>
<artifactId>imgui-java-binding</artifactId>
@ -241,6 +261,22 @@
<artifactId>org.apache.felix.framework</artifactId>
<version>7.0.3</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.service.component.annotations</artifactId>
<version>1.4.0</version>
</dependency>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-freetype</artifactId>
<version>1.10.0</version>
</dependency>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-freetype-platform</artifactId>
<version>1.10.0</version>
<classifier>natives-desktop</classifier>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
@ -279,6 +315,11 @@
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.3.0</version>
</plugin>
</plugins>
</pluginManagement>
</build>