pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. <dependency>
  25. <groupId>com.badlogicgames.gdx</groupId>
  26. <artifactId>gdx</artifactId>
  27. <version>1.12.1</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.badlogicgames.gdx</groupId>
  31. <artifactId>gdx-backend-lwjgl3</artifactId>
  32. <version>1.12.1</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.badlogicgames.gdx</groupId>
  36. <artifactId>gdx-platform</artifactId>
  37. <version>1.12.1</version>
  38. <classifier>natives-desktop</classifier>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.badlogicgames.gdx</groupId>
  42. <artifactId>gdx-backend-headless</artifactId>
  43. <version>1.12.1</version>
  44. </dependency>
  45. <!-- ImGUI -->
  46. <dependency>
  47. <groupId>io.github.spair</groupId>
  48. <artifactId>imgui-java-binding</artifactId>
  49. <version>1.86.11</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>io.github.spair</groupId>
  53. <artifactId>imgui-java-lwjgl3</artifactId>
  54. <version>1.86.11</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>io.github.spair</groupId>
  58. <artifactId>imgui-java-natives-linux</artifactId>
  59. <version>1.86.11</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>io.github.spair</groupId>
  63. <artifactId>imgui-java-natives-windows</artifactId>
  64. <version>1.86.11</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>io.github.spair</groupId>
  68. <artifactId>imgui-java-natives-macos</artifactId>
  69. <version>1.86.11</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>xyz.tbvns</groupId>
  73. <artifactId>GD4J</artifactId>
  74. <version>1.0-ALPHA</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>tv.wunderbox</groupId>
  78. <artifactId>nativefiledialog</artifactId>
  79. <version>1.0.3</version>
  80. </dependency>
  81. <!-- https://mvnrepository.com/artifact/org.lwjgl/lwjgl-tinyfd -->
  82. <dependency>
  83. <groupId>org.lwjgl</groupId>
  84. <artifactId>lwjgl-tinyfd</artifactId>
  85. <version>3.3.4</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.lwjgl</groupId>
  89. <artifactId>lwjgl-tinyfd</artifactId>
  90. <classifier>natives-windows</classifier>
  91. <version>3.3.4</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.lwjgl</groupId>
  95. <artifactId>lwjgl-tinyfd</artifactId>
  96. <classifier>natives-linux</classifier>
  97. <version>3.3.4</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.lwjgl</groupId>
  101. <artifactId>lwjgl-tinyfd</artifactId>
  102. <classifier>natives-macos</classifier>
  103. <version>3.3.4</version>
  104. </dependency>
  105. </dependencies>
  106. </project>