Moved netty netcode from :server:netty to :core module

This commit is contained in:
Collin Smith
2020-06-25 10:08:00 -07:00
parent fbdf50f646
commit 597ae213c5
22 changed files with 4 additions and 4 deletions

View File

@ -239,6 +239,10 @@ project(":core") {
// compile "net.mostlyoriginal.artemis-odb:contrib-plugin-singleton:$artemisContribVersion" // TODO: when added
}
dependencies {
compile group: 'io.netty', name: 'netty-all', version: nettyVersion
}
dependencies {
testCompile 'junit:junit:4.12'
testCompile "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion"
@ -331,10 +335,6 @@ project(":server:netty") {
compile group: 'commons-cli', name: 'commons-cli', version: cliVersion
}
dependencies {
compile group: 'io.netty', name: 'netty-all', version: nettyVersion
}
dependencies {
testCompile 'junit:junit:4.12'
}