Files
mystictutorial/core/build.gradle
2025-05-31 23:35:22 +02:00

20 lines
786 B
Groovy

[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
eclipse.project.name = appName + '-core'
dependencies {
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-freetype:$gdxVersion"
api "com.badlogicgames.gdx:gdx:$gdxVersion"
// freetype font support for skins
api "com.github.raeleus.stripe:freetype:$stripeVersion"
// ten patch for better ProgressBar support (scene2d)
api "com.github.raeleus.TenPatch:tenpatch:$tenPatchVersion"
if(enableGraalNative == 'true') {
implementation "io.github.berstanio:gdx-svmhelper-annotations:$graalHelperVersion"
}
}