pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. <parent>
  7. <groupId>xyz.tbvns</groupId>
  8. <artifactId>PowerGD</artifactId>
  9. <version>1.0-ALPHA</version>
  10. </parent>
  11. <artifactId>PowerGDEditor</artifactId>
  12. <properties>
  13. <maven.compiler.source>21</maven.compiler.source>
  14. <maven.compiler.target>21</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.badlogicgames.gdx</groupId>
  20. <artifactId>gdx</artifactId>
  21. <version>1.12.1</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.badlogicgames.gdx</groupId>
  25. <artifactId>gdx-backend-lwjgl3</artifactId>
  26. <version>1.12.1</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.badlogicgames.gdx</groupId>
  30. <artifactId>gdx-platform</artifactId>
  31. <version>1.12.1</version>
  32. <classifier>natives-desktop</classifier>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.badlogicgames.gdx</groupId>
  36. <artifactId>gdx-backend-headless</artifactId>
  37. <version>1.12.1</version>
  38. </dependency>
  39. <!-- ImGUI -->
  40. <dependency>
  41. <groupId>io.github.spair</groupId>
  42. <artifactId>imgui-java-binding</artifactId>
  43. <version>1.86.11</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>io.github.spair</groupId>
  47. <artifactId>imgui-java-lwjgl3</artifactId>
  48. <version>1.86.11</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>io.github.spair</groupId>
  52. <artifactId>imgui-java-natives-linux</artifactId>
  53. <version>1.86.11</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>io.github.spair</groupId>
  57. <artifactId>imgui-java-natives-windows</artifactId>
  58. <version>1.86.11</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>io.github.spair</groupId>
  62. <artifactId>imgui-java-natives-macos</artifactId>
  63. <version>1.86.11</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>xyz.tbvns</groupId>
  67. <artifactId>GD4J</artifactId>
  68. <version>1.0-ALPHA</version>
  69. </dependency>
  70. </dependencies>
  71. </project>