build.gradle 1.0 KB

123456789101112131415161718192021222324
  1. [compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
  2. eclipse.project.name = appName + '-core'
  3. dependencies {
  4. api "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
  5. api "com.badlogicgames.gdx:gdx-bullet:$gdxVersion"
  6. api "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
  7. api "com.badlogicgames.gdx:gdx:$gdxVersion"
  8. api "com.github.MrStahlfelge.gdx-websockets:core:$websocketVersion"
  9. api "com.github.mgsx-dev.gdx-gltf:gltf:$gdxGltfVersion"
  10. api "com.github.raeleus.stripe:stripe:$stripeVersion"
  11. api "com.github.tommyettinger:anim8-gdx:$anim8Version"
  12. api "com.github.tommyettinger:colorful:$colorfulVersion"
  13. api "space.earlygrey:shapedrawer:$shapeDrawerVersion"
  14. api "space.earlygrey:simple-graphs:$simpleGraphsVersion"
  15. api project(':shared')
  16. annotationProcessor "org.projectlombok:lombok:$lombokVersion"
  17. compileOnly "org.projectlombok:lombok:$lombokVersion"
  18. implementation 'org.reflections:reflections:0.10.2'
  19. if(enableGraalNative == 'true') {
  20. implementation "io.github.berstanio:gdx-svmhelper-annotations:$graalHelperVersion"
  21. }
  22. }