15 lines
532 B
Groovy
15 lines
532 B
Groovy
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
|
eclipse.project.name = appName + '-core'
|
|
|
|
dependencies {
|
|
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"
|
|
|
|
if(enableGraalNative == 'true') {
|
|
implementation "io.github.berstanio:gdx-svmhelper-annotations:$graalHelperVersion"
|
|
implementation "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
|
|
|
|
}
|
|
}
|