This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
tiles3-basic-example/basic-example-core/pom.xml

46 lines
1.2 KiB
XML
Raw Permalink Normal View History

2021-02-06 19:34:30 -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>
<parent>
<groupId>ca.blarg.tiles3</groupId>
<artifactId>basic-example-parent</artifactId>
<version>0.1-SNAPSHOT</version>
</parent>
<artifactId>basic-example-core</artifactId>
<properties>
<maven.compiler.target>1.6</maven.compiler.target>
<maven.compiler.source>1.6</maven.compiler.source>
</properties>
<dependencies>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx</artifactId>
</dependency>
<dependency>
<groupId>ca.blarg</groupId>
2021-02-06 19:34:30 -05:00
<artifactId>gdx-toolbox</artifactId>
</dependency>
<dependency>
<groupId>ca.blarg</groupId>
2021-02-06 19:34:30 -05:00
<artifactId>gdx-tilemap3d</artifactId>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>${project.basedir}/src/main/resources</directory>
</resource>
<resource>
<directory>${project.basedir}/../assets</directory>
</resource>
</resources>
</build>
</project>