Advertisement
Guest User

Untitled

a guest
Mar 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.65 KB | None | 0 0
  1. <dependencies>
  2. <dependency>
  3. <groupId>com.badlogicgames.gdx</groupId>
  4. <artifactId>gdx</artifactId>
  5. <version>${libGDX.version}</version>
  6. <type>jar</type>
  7. </dependency>
  8. <dependency>
  9. <groupId>com.badlogicgames.gdx</groupId>
  10. <artifactId>gdx-platform</artifactId>
  11. <version>${libGDX.version}</version>
  12. <classifier>natives-desktop</classifier>
  13. </dependency>
  14. <dependency>
  15. <groupId>com.badlogicgames.gdx</groupId>
  16. <artifactId>gdx-backend-lwjgl</artifactId>
  17. <version>${libGDX.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.badlogicgames.gdx</groupId>
  21. <artifactId>gdx-box2d</artifactId>
  22. <version>${libGDX.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.badlogicgames.gdx</groupId>
  26. <artifactId>gdx-box2d-platform</artifactId>
  27. <classifier>natives-desktop</classifier>
  28. <version>${libGDX.version}</version>
  29. <scope>compile</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.badlogicgames.gdx</groupId>
  33. <artifactId>gdx-freetype</artifactId>
  34. <version>${libGDX.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.badlogicgames.gdx</groupId>
  38. <artifactId>gdx-freetype-platform</artifactId>
  39. <classifier>natives-desktop</classifier>
  40. <version>${libGDX.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.netbeans.api</groupId>
  44. <artifactId>org-netbeans-api-annotations-common</artifactId>
  45. <version>${netbeans.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.netbeans.api</groupId>
  49. <artifactId>org-openide-modules</artifactId>
  50. <version>${netbeans.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.netbeans.api</groupId>
  54. <artifactId>org-openide-util-ui</artifactId>
  55. <version>${netbeans.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.netbeans.api</groupId>
  59. <artifactId>org-openide-util-lookup</artifactId>
  60. <version>RELEASE82</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>${project.groupId}</groupId>
  64. <artifactId>Common</artifactId>
  65. <version>${project.version}</version>
  66. </dependency>
  67. </dependencies>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement