13 lines
331 B
Groovy
13 lines
331 B
Groovy
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
|
eclipse.project.name = appName + '-core'
|
|
|
|
dependencies {
|
|
api "com.badlogicgames.gdx:gdx:$gdxVersion"
|
|
|
|
if(enableGraalNative == 'true') {
|
|
implementation "io.github.berstanio:gdx-svmhelper-annotations:$graalHelperVersion"
|
|
}
|
|
|
|
implementation(project(":server"))
|
|
}
|