pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>xyz.tbvns</groupId>
  7. <artifactId>engine-core</artifactId>
  8. <version>1.0-ALPHA</version>
  9. <properties>
  10. <maven.compiler.source>21</maven.compiler.source>
  11. <maven.compiler.target>21</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <parent>
  15. <groupId>xyz.tbvns</groupId>
  16. <artifactId>engine</artifactId>
  17. <version>1.0-ALPHA</version>
  18. </parent>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.badlogicgames.gdx</groupId>
  22. <artifactId>gdx</artifactId>
  23. <version>1.12.1</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.badlogicgames.gdx</groupId>
  27. <artifactId>gdx-backend-lwjgl3</artifactId>
  28. <version>1.12.1</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.badlogicgames.gdx</groupId>
  32. <artifactId>gdx-platform</artifactId>
  33. <version>1.12.1</version>
  34. <classifier>natives-desktop</classifier>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-compiler-plugin</artifactId>
  42. <version>3.8.1</version>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. </project>