build.gradle 638 B

1234567891011121314151617181920
  1. [compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
  2. eclipse.project.name = appName + '-core'
  3. dependencies {
  4. api "com.badlogicgames.ashley:ashley:$ashleyVersion"
  5. api "com.badlogicgames.box2dlights:box2dlights:$box2dlightsVersion"
  6. api "com.badlogicgames.gdx:gdx-ai:$aiVersion"
  7. api "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
  8. api "com.badlogicgames.gdx:gdx:$gdxVersion"
  9. implementation project(":shared")
  10. api project(':shared')
  11. if(enableGraalNative == 'true') {
  12. implementation "io.github.berstanio:gdx-svmhelper-annotations:$graalHelperVersion"
  13. }
  14. }
  15. jar {
  16. duplicatesStrategy = DuplicatesStrategy.EXCLUDE
  17. }