1234567891011121314151617181920212223 |
- [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-freetype:$gdxVersion"
- api "com.badlogicgames.gdx:gdx:$gdxVersion"
- api "com.github.MrStahlfelge.gdx-websockets:core:$websocketVersion"
- api "com.github.mgsx-dev.gdx-gltf:gltf:$gdxGltfVersion"
- api "com.github.raeleus.stripe:stripe:$stripeVersion"
- api "com.github.tommyettinger:anim8-gdx:$anim8Version"
- api "com.github.tommyettinger:colorful:$colorfulVersion"
- api "space.earlygrey:shapedrawer:$shapeDrawerVersion"
- api "space.earlygrey:simple-graphs:$simpleGraphsVersion"
- api project(':shared')
- annotationProcessor "org.projectlombok:lombok:$lombokVersion"
- compileOnly "org.projectlombok:lombok:$lombokVersion"
- if(enableGraalNative == 'true') {
- implementation "io.github.berstanio:gdx-svmhelper-annotations:$graalHelperVersion"
- }
- }
|