16 lines
578 B
Groovy
16 lines
578 B
Groovy
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
|
eclipse.project.name = appName + '-core'
|
|
|
|
dependencies {
|
|
api "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
|
|
api "com.badlogicgames.gdx:gdx-bullet:$gdxVersion"
|
|
api "com.badlogicgames.gdx:gdx:$gdxVersion"
|
|
api "com.kotcrab.vis:vis-ui:$visUiVersion"
|
|
api "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
|
|
api "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop"
|
|
|
|
if(enableGraalNative == 'true') {
|
|
implementation "io.github.berstanio:gdx-svmhelper-annotations:$graalHelperVersion"
|
|
}
|
|
}
|