riiablo/server/build.gradle
Collin Smith 9c18e18a9c Reorganized gradle scripts into subproject directories
Reorganized gradle scripts into subproject directories
Reformatted gradle scripts to be more consistent
Created :server subproject group
Deleted :mpqlib subproject due to inactivity
Hopefully this is a step in the right direction
2020-11-16 23:14:33 -08:00

16 lines
379 B
Groovy

subprojects {
apply plugin: 'java'
dependencies {
implementation project(':core')
implementation "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
implementation "commons-cli:commons-cli:$cliVersion"
}
dependencies {
testImplementation 'junit:junit:4.12'
}
}