Updated jlcommon (added networking)

This commit is contained in:
Josh Larson
2019-01-22 19:36:09 -06:00
parent 61b9dec2c3
commit 5e4defeee1
2 changed files with 3 additions and 0 deletions

View File

@@ -12,6 +12,8 @@ repositories {
dependencies {
compile project(':pswgcommon')
compile group: 'me.joshlarson', name: 'jlcommon-network', version: '1.0.0'
testCompile 'junit:junit:4.12'
}

View File

@@ -1,5 +1,6 @@
module com.projectswg.holocore.client {
requires com.projectswg.common;
requires me.joshlarson.jlcommon.network;
exports com.projectswg.holocore.client;
}