17 lines
459 B
Groovy
17 lines
459 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 "com.google.code.gson:gson:$gsonVersion"
|
|
|
|
if(enableGraalNative == 'true') {
|
|
implementation "io.github.berstanio:gdx-svmhelper-annotations:$graalHelperVersion"
|
|
}
|
|
}
|
|
|
|
jar {
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
}
|