build.gradle 1013 B

1234567891011121314151617181920212223
  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. if(enableGraalNative == 'true') {
  19. implementation "io.github.berstanio:gdx-svmhelper-annotations:$graalHelperVersion"
  20. }
  21. }