mirror of
https://github.com/collinsmith/riiablo.git
synced 2024-12-22 21:14:22 +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
14 lines
448 B
Groovy
14 lines
448 B
Groovy
apply plugin: 'java'
|
|
|
|
project.ext.visuiVersion = '1.4.0'
|
|
|
|
dependencies {
|
|
implementation project(':core')
|
|
implementation "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
|
|
implementation "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
|
implementation "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion"
|
|
|
|
implementation "commons-cli:commons-cli:$cliVersion"
|
|
implementation "com.kotcrab.vis:vis-ui:$visuiVersion"
|
|
}
|