mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-01-24 01:35:44 +07:00
39 lines
1.2 KiB
Groovy
39 lines
1.2 KiB
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"
|
|
}
|
|
|
|
dependencies {
|
|
implementation "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
|
|
implementation "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-desktop"
|
|
implementation "com.badlogicgames.box2dlights:box2dlights:$box2DLightsVersion"
|
|
}
|
|
|
|
subprojects {
|
|
apply plugin: 'java'
|
|
apply plugin: 'application'
|
|
|
|
dependencies {
|
|
implementation project(':core')
|
|
implementation "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
|
|
implementation "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion"
|
|
implementation "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
|
|
|
implementation "commons-cli:commons-cli:$cliVersion"
|
|
implementation "com.kotcrab.vis:vis-ui:$visuiVersion"
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'junit:junit:4.12'
|
|
}
|
|
}
|