pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. <repositories>
  18. <repository>
  19. <id>jitpack.io</id>
  20. <url>https://jitpack.io</url>
  21. </repository>
  22. </repositories>
  23. <dependencies>
  24. <!-- LibGDX -->
  25. <dependency>
  26. <groupId>com.badlogicgames.gdx</groupId>
  27. <artifactId>gdx</artifactId>
  28. <version>1.13.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.badlogicgames.gdx</groupId>
  32. <artifactId>gdx-backend-lwjgl3</artifactId>
  33. <version>1.13.0</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.badlogicgames.gdx</groupId>
  37. <artifactId>gdx-platform</artifactId>
  38. <version>1.13.0</version>
  39. <classifier>natives-desktop</classifier>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.badlogicgames.gdx</groupId>
  43. <artifactId>gdx-bullet</artifactId>
  44. <version>1.13.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.badlogicgames.gdx</groupId>
  48. <artifactId>gdx-bullet-platform</artifactId>
  49. <version>1.13.0</version>
  50. <classifier>natives-desktop</classifier>
  51. </dependency>
  52. <!-- ImGUI -->
  53. <dependency>
  54. <groupId>io.github.spair</groupId>
  55. <artifactId>imgui-java-binding</artifactId>
  56. <version>1.86.11</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>io.github.spair</groupId>
  60. <artifactId>imgui-java-lwjgl3</artifactId>
  61. <version>1.86.11</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>io.github.spair</groupId>
  65. <artifactId>imgui-java-natives-linux</artifactId>
  66. <version>1.86.11</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>io.github.spair</groupId>
  70. <artifactId>imgui-java-natives-windows</artifactId>
  71. <version>1.86.11</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>io.github.spair</groupId>
  75. <artifactId>imgui-java-natives-macos</artifactId>
  76. <version>1.86.11</version>
  77. </dependency>
  78. <!--Others -->
  79. <dependency>
  80. <groupId>tv.wunderbox</groupId>
  81. <artifactId>nativefiledialog</artifactId>
  82. <version>1.0.3</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.lwjgl</groupId>
  86. <artifactId>lwjgl-tinyfd</artifactId>
  87. <version>3.3.4</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.lwjgl</groupId>
  91. <artifactId>lwjgl-tinyfd</artifactId>
  92. <classifier>natives-windows</classifier>
  93. <version>3.3.4</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.lwjgl</groupId>
  97. <artifactId>lwjgl-tinyfd</artifactId>
  98. <classifier>natives-linux</classifier>
  99. <version>3.3.4</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.lwjgl</groupId>
  103. <artifactId>lwjgl-tinyfd</artifactId>
  104. <classifier>natives-macos</classifier>
  105. <version>3.3.4</version>
  106. </dependency>
  107. <!-- GD4J -->
  108. <dependency>
  109. <groupId>xyz.tbvns</groupId>
  110. <artifactId>GD4J</artifactId>
  111. <version>1.0-ALPHA</version>
  112. </dependency>
  113. </dependencies>
  114. <distributionManagement>
  115. <repository>
  116. <id>main-repo</id> <!-- Must match the id in settings.xml -->
  117. <url>http://localhost:7071</url>
  118. </repository>
  119. </distributionManagement>
  120. </project>