riiablo/tools/backends/backend-core/build.gradle
Collin Smith 0cf617b55a Moved tools into backend dependencies and old tools into tools:old
Moved gdx-backend-lwjgl dependency from impl to testImpl in :core
Created backend tool libraries for headless, lwjgl, lwjgl3
2021-11-27 23:42:18 -08:00

12 lines
219 B
Groovy

apply plugin: 'application'
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
dependencies {
api project(':core')
api "commons-cli:commons-cli:$cliVersion"
}