pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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>com.github.steos</groupId>
  73. <artifactId>jnafilechooser</artifactId>
  74. <version>1.1.2</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>xyz.tbvns</groupId>
  78. <artifactId>GD4J</artifactId>
  79. <version>1.0-ALPHA</version>
  80. </dependency>
  81. </dependencies>
  82. </project>