19 lines
497 B
Groovy
19 lines
497 B
Groovy
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
|
eclipse.project.name = appName + '-core'
|
|
|
|
dependencies {
|
|
api "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
|
|
api "com.badlogicgames.gdx:gdx:$gdxVersion"
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
|
|
testImplementation 'org.assertj:assertj-core:3.26.3'
|
|
|
|
if(enableGraalNative == 'true') {
|
|
implementation "io.github.berstanio:gdx-svmhelper-annotations:$graalHelperVersion"
|
|
}
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|