Advertisement
daddy_jones

Untitled

Dec 17th, 2018
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. /*
  2. * This build file was generated by the Gradle 'init' task.
  3. *
  4. * This generated file contains a sample Java Library project to get you started.
  5. * For more details take a look at the Java Libraries chapter in the Gradle
  6. * user guide available at https://docs.gradle.org/4.4/userguide/java_library_plugin.html
  7. */
  8.  
  9. version = "0.1"
  10. group = "uk.co.redfruit.gdx"
  11.  
  12. ext {
  13. gdxVersion = "1.9.8"
  14. }
  15.  
  16. apply plugin: 'java'
  17.  
  18.  
  19. // Apply the java-library plugin to add support for Java Library
  20. apply plugin: 'java-library'
  21.  
  22. apply plugin: "maven"
  23.  
  24.  
  25. // In this section you declare where to find the dependencies of your project
  26. repositories {
  27. // Use jcenter for resolving your dependencies.
  28. // You can declare any Maven/Ivy/file repository here.
  29. jcenter()
  30. mavenLocal()
  31. }
  32.  
  33. dependencies {
  34.  
  35. //libGDX
  36. implementation "com.badlogicgames.gdx:gdx:$gdxVersion"
  37.  
  38. // Use JUnit test framework
  39. testImplementation 'junit:junit:4.12'
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement