2024-07-15 18:58:45 +02:00
|
|
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
|
|
|
eclipse.project.name = appName + '-core'
|
|
|
|
|
2024-08-09 17:50:51 +02:00
|
|
|
sourceSets.test.java.srcDirs = [ "src/test/java/" ]
|
|
|
|
|
2024-07-15 18:58:45 +02:00
|
|
|
dependencies {
|
|
|
|
api "com.badlogicgames.gdx-controllers:gdx-controllers-core:$gdxControllersVersion"
|
|
|
|
api "com.badlogicgames.gdx:gdx-ai:$aiVersion"
|
|
|
|
api "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
|
|
|
|
api "com.badlogicgames.gdx:gdx:$gdxVersion"
|
|
|
|
api "com.github.MrStahlfelge.gdx-websockets:core:$websocketVersion"
|
|
|
|
api "com.github.MrStahlfelge.gdx-websockets:serialization:$websocketSerializationVersion"
|
|
|
|
api "com.github.crykn.guacamole:core:$guacamoleVersion"
|
|
|
|
api "com.github.crykn.guacamole:gdx:$guacamoleVersion"
|
|
|
|
api "com.github.tommyettinger:formic:$formicVersion"
|
|
|
|
api "com.github.tommyettinger:libgdx-utils-box2d:$utilsBox2dVersion"
|
|
|
|
api "com.github.tommyettinger:libgdx-utils:$utilsVersion"
|
|
|
|
api "de.golfgl.gdxcontrollerutils:gdx-controllerutils-mapping:$controllerMappingVersion"
|
|
|
|
api "games.rednblack.miniaudio:miniaudio:$miniaudioVersion"
|
2024-08-10 18:55:15 +02:00
|
|
|
//api "com.openeggbert.gdx:gdx-storage:0.0.0-SNAPSHOT"
|
2024-07-15 18:58:45 +02:00
|
|
|
annotationProcessor "org.projectlombok:lombok:$lombokVersion"
|
|
|
|
compileOnly "org.projectlombok:lombok:$lombokVersion"
|
2024-08-09 17:50:51 +02:00
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.3"
|
|
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.3"
|
2024-09-11 21:24:37 +02:00
|
|
|
api "com.pixelgamelibrary:pixel:$pixelVersion"
|
|
|
|
|
2024-07-15 18:58:45 +02:00
|
|
|
}
|
2024-08-09 17:50:51 +02:00
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform {
|
|
|
|
}
|
2024-08-10 16:34:43 +02:00
|
|
|
}
|