mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-01-05 13:08:24 +07:00
9c18e18a9c
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
16 lines
379 B
Groovy
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'
|
|
}
|
|
}
|