pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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. <packaging>jar</packaging>
  7. <parent>
  8. <groupId>xyz.tbvns</groupId>
  9. <artifactId>PowerGD</artifactId>
  10. <version>1.0-ALPHA</version>
  11. </parent>
  12. <artifactId>PowerGDEditor</artifactId>
  13. <properties>
  14. <maven.compiler.source>21</maven.compiler.source>
  15. <maven.compiler.target>21</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <repositories>
  19. <repository>
  20. <id>jitpack.io</id>
  21. <url>https://jitpack.io</url>
  22. </repository>
  23. </repositories>
  24. <dependencies>
  25. <!-- LibGDX -->
  26. <dependency>
  27. <groupId>com.badlogicgames.gdx</groupId>
  28. <artifactId>gdx</artifactId>
  29. <version>1.13.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.badlogicgames.gdx</groupId>
  33. <artifactId>gdx-backend-lwjgl3</artifactId>
  34. <version>1.13.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.badlogicgames.gdx</groupId>
  38. <artifactId>gdx-platform</artifactId>
  39. <version>1.13.0</version>
  40. <classifier>natives-desktop</classifier>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.badlogicgames.gdx</groupId>
  44. <artifactId>gdx-bullet</artifactId>
  45. <version>1.13.0</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.badlogicgames.gdx</groupId>
  49. <artifactId>gdx-bullet-platform</artifactId>
  50. <version>1.13.0</version>
  51. <classifier>natives-desktop</classifier>
  52. </dependency>
  53. <!-- ImGUI -->
  54. <dependency>
  55. <groupId>io.github.spair</groupId>
  56. <artifactId>imgui-java-binding</artifactId>
  57. <version>1.86.11</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>io.github.spair</groupId>
  61. <artifactId>imgui-java-lwjgl3</artifactId>
  62. <version>1.86.11</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>io.github.spair</groupId>
  66. <artifactId>imgui-java-natives-linux</artifactId>
  67. <version>1.86.11</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>io.github.spair</groupId>
  71. <artifactId>imgui-java-natives-windows</artifactId>
  72. <version>1.86.11</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>io.github.spair</groupId>
  76. <artifactId>imgui-java-natives-macos</artifactId>
  77. <version>1.86.11</version>
  78. </dependency>
  79. <!--Others -->
  80. <dependency>
  81. <groupId>tv.wunderbox</groupId>
  82. <artifactId>nativefiledialog</artifactId>
  83. <version>1.0.3</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.lwjgl</groupId>
  87. <artifactId>lwjgl-tinyfd</artifactId>
  88. <version>3.3.4</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.lwjgl</groupId>
  92. <artifactId>lwjgl-tinyfd</artifactId>
  93. <classifier>natives-windows</classifier>
  94. <version>3.3.4</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.lwjgl</groupId>
  98. <artifactId>lwjgl-tinyfd</artifactId>
  99. <classifier>natives-linux</classifier>
  100. <version>3.3.4</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.lwjgl</groupId>
  104. <artifactId>lwjgl-tinyfd</artifactId>
  105. <classifier>natives-macos</classifier>
  106. <version>3.3.4</version>
  107. </dependency>
  108. <!-- GD4J -->
  109. <dependency>
  110. <groupId>xyz.tbvns</groupId>
  111. <artifactId>GD4J</artifactId>
  112. <version>1.0-ALPHA</version>
  113. </dependency>
  114. </dependencies>
  115. <distributionManagement>
  116. <repository>
  117. <id>main-repo</id> <!-- Must match the id in settings.xml -->
  118. <url>http://192.168.1.42:7071/releases</url>
  119. </repository>
  120. </distributionManagement>
  121. <build>
  122. <plugins>
  123. <plugin>
  124. <groupId>org.apache.maven.plugins</groupId>
  125. <artifactId>maven-compiler-plugin</artifactId>
  126. <version>3.8.1</version>
  127. <configuration>
  128. <source>1.8</source>
  129. <target>1.8</target>
  130. </configuration>
  131. </plugin>
  132. <plugin>
  133. <groupId>org.apache.maven.plugins</groupId>
  134. <artifactId>maven-jar-plugin</artifactId>
  135. <version>3.4.2</version>
  136. <configuration>
  137. <archive>
  138. <manifest>
  139. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  140. <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
  141. </manifest>
  142. </archive>
  143. </configuration>
  144. </plugin>
  145. </plugins>
  146. </build>
  147. </project>