123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?xml version="1.0"?>
- <project
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
- xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.squidpony</groupId>
- <artifactId>squidlib-parent</artifactId>
- <version>3.0.0-SNAPSHOT</version>
- <relativePath>../</relativePath>
- </parent>
- <artifactId>squidlib</artifactId>
- <name>squidlib</name>
- <description>SquidLib LibGDX display code. Please refer to https://github.com/SquidPony/SquidLib .</description>
- <build>
- <testSourceDirectory>src/test/java</testSourceDirectory>
- <testResources>
- <testResource>
- <directory>src/test/resources</directory>
- </testResource>
- </testResources>
- <testOutputDirectory>target/test-classes</testOutputDirectory>
- </build>
- <dependencies>
- <dependency>
- <groupId>com.squidpony</groupId>
- <artifactId>squidlib-util</artifactId>
- <version>3.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.badlogicgames.gdx</groupId>
- <artifactId>gdx</artifactId>
- <version>${gdx.version}</version>
- </dependency>
- <dependency>
- <groupId>com.badlogicgames.gdx</groupId>
- <artifactId>gdx-backend-lwjgl</artifactId>
- <version>${gdx.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.badlogicgames.gdx</groupId>
- <artifactId>gdx-platform</artifactId>
- <version>${gdx.version}</version>
- <classifier>natives-desktop</classifier>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|