Files
kryonet/core/build.gradle
2026-04-05 17:17:46 -03:00

18 lines
476 B
Groovy

[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
eclipse.project.name = appName + '-core'
dependencies {
api "com.badlogicgames.gdx:gdx:$gdxVersion"
api "com.github.crykn:kryonet:$kryoNetVersion"
implementation project(':shared')
if(enableGraalNative == 'true') {
implementation "io.github.berstanio:gdx-svmhelper-annotations:$graalHelperVersion"
implementation(project(":shared"))
}
}
jar {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}