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

dependencies {
  api "com.github.mgsx-dev.gdx-gltf:gltf:$gdxGltfVersion"
  api "com.github.MrStahlfelge.gdx-websockets:core:$gdxWsVersion"
  api "ch.qos.logback:logback-classic:$logbackVersion"
  api project(':shared')

  if (enableGraalNative == 'true') {
    implementation "io.github.berstanio:gdx-svmhelper-annotations:$graalHelperVersion"
  }
}