blob: cd4fff1e88d3215023dfdce493881f5f9bc54184 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
[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"
implementation 'org.apache.logging.log4j:log4j-api:2.25.3'
implementation 'org.apache.logging.log4j:log4j-core:2.25.3'
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.25.3'
if(enableGraalNative == 'true') {
implementation "io.github.berstanio:gdx-svmhelper-annotations:$graalHelperVersion"
}
}
|