Added server:d2gs module

This commit is contained in:
Collin Smith
2019-11-30 15:44:33 -08:00
parent ca94ac5a60
commit f4b76b1c38
2 changed files with 21 additions and 1 deletions

View File

@ -256,6 +256,26 @@ project(":server:mcp") {
}
}
project(":server:d2gs") {
apply plugin: "java"
dependencies {
// TODO: $gdxVersion is pulling an older file for some reason
compile "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
}
dependencies {
compile project(":core")
compile group: 'commons-cli', name: 'commons-cli', version: cliVersion
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.6'
}
dependencies {
testCompile 'junit:junit:4.12'
}
}
project(":mpqlib") {
apply plugin: "java"

View File

@ -1 +1 @@
include 'tools', 'tester', 'ds1viewer', 'mpqviewer', 'server:bnls', 'server:mcp', 'desktop', 'android', 'mpqlib', 'core'
include 'tools', 'tester', 'ds1viewer', 'mpqviewer', 'server:bnls', 'server:mcp', 'server:d2gs', 'desktop', 'android', 'mpqlib', 'core'