mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-07-04 15:27:30 +07:00
Added server:d2gs module
This commit is contained in:
20
build.gradle
20
build.gradle
@ -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"
|
||||
|
||||
|
@ -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'
|
Reference in New Issue
Block a user