gdx-tilemap3d/pom.xml

37 lines
1.1 KiB
XML
Raw Normal View History

2021-02-06 18:58:43 -05:00
<?xml version="1.0" encoding="UTF-8"?>
<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>
2022-01-10 21:19:14 -05:00
<groupId>ca.blarg</groupId>
2021-02-06 18:58:43 -05:00
<artifactId>gdx-tilemap3d</artifactId>
<version>0.1-SNAPSHOT</version>
<name>gdx-tilemap3d</name>
<description></description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.target>1.6</maven.compiler.target>
<maven.compiler.source>1.6</maven.compiler.source>
<gdx.version>1.0.0</gdx.version>
<gdx-toolbox.version>0.1-SNAPSHOT</gdx-toolbox.version>
</properties>
<dependencies>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx</artifactId>
<version>${gdx.version}</version>
</dependency>
<dependency>
<groupId>ca.blarg.gdx</groupId>
<artifactId>gdx-toolbox</artifactId>
<version>${gdx-toolbox.version}</version>
</dependency>
</dependencies>
</project>