summaryrefslogtreecommitdiff
path: root/core/build.gradle
blob: a917182e3eb6139526fc785be9498f92794ba7ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
eclipse.project.name = appName + '-core'

dependencies {
  api "com.badlogicgames.box2dlights:box2dlights:$box2dlightsVersion"
  api "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
  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"
  }
}