pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.squidpony</groupId>
  8. <artifactId>squidlib-parent</artifactId>
  9. <version>3.0.0-SNAPSHOT</version>
  10. <relativePath>../</relativePath>
  11. </parent>
  12. <artifactId>squidlib</artifactId>
  13. <name>squidlib</name>
  14. <description>SquidLib LibGDX display code. Please refer to https://github.com/SquidPony/SquidLib .</description>
  15. <build>
  16. <testSourceDirectory>src/test/java</testSourceDirectory>
  17. <testResources>
  18. <testResource>
  19. <directory>src/test/resources</directory>
  20. </testResource>
  21. </testResources>
  22. <testOutputDirectory>target/test-classes</testOutputDirectory>
  23. </build>
  24. <dependencies>
  25. <dependency>
  26. <groupId>com.squidpony</groupId>
  27. <artifactId>squidlib-util</artifactId>
  28. <version>3.0.0-SNAPSHOT</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.badlogicgames.gdx</groupId>
  32. <artifactId>gdx</artifactId>
  33. <version>${gdx.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.badlogicgames.gdx</groupId>
  37. <artifactId>gdx-backend-lwjgl</artifactId>
  38. <version>${gdx.version}</version>
  39. <scope>test</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.badlogicgames.gdx</groupId>
  43. <artifactId>gdx-platform</artifactId>
  44. <version>${gdx.version}</version>
  45. <classifier>natives-desktop</classifier>
  46. <scope>test</scope>
  47. </dependency>
  48. </dependencies>
  49. </project>