| 1234567891011121314151617181920 |
- [compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
- eclipse.project.name = appName + '-core'
- dependencies {
- implementation "com.esotericsoftware:kryonet:2.22.0-RC1"
- api "com.badlogicgames.ashley:ashley:$ashleyVersion"
- api "com.badlogicgames.box2dlights:box2dlights:$box2dlightsVersion"
- api "com.badlogicgames.gdx:gdx-ai:$aiVersion"
- api "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
- api "com.badlogicgames.gdx:gdx:$gdxVersion"
- api project(':shared')
- if(enableGraalNative == 'true') {
- implementation "io.github.berstanio:gdx-svmhelper-annotations:$graalHelperVersion"
- }
- }
- jar {
- duplicatesStrategy = DuplicatesStrategy.EXCLUDE
- }
|