proto125_netty as module
This commit is contained in:
@@ -1,18 +1,10 @@
|
||||
group 'mc'
|
||||
version '1.0-SNAPSHOT'
|
||||
|
||||
ext {
|
||||
netty_version = '4.1.22.Final'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
/* Core */
|
||||
compile_excludeCopy project(':core')
|
||||
|
||||
/* Netty */
|
||||
compile (group: 'io.netty', name: 'netty-all', version: netty_version)
|
||||
|
||||
/* Components */
|
||||
compile (group: 'com.google.guava', name: 'guava', version: '24.1-jre')
|
||||
compile (group: 'com.google.code.gson', name: 'gson', version: '2.8.2')
|
||||
}
|
||||
|
||||
14
proto125_netty/build.gradle
Normal file
14
proto125_netty/build.gradle
Normal file
@@ -0,0 +1,14 @@
|
||||
group 'mc'
|
||||
version '1.0-SNAPSHOT'
|
||||
|
||||
ext {
|
||||
netty_version = '4.1.22.Final'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
/* Protocol 1.2.5 */
|
||||
compile_excludeCopy project(':proto125')
|
||||
|
||||
/* Netty */
|
||||
compile (group: 'io.netty', name: 'netty-all', version: netty_version)
|
||||
}
|
||||
@@ -2,3 +2,4 @@ rootProject.name = 'server'
|
||||
|
||||
include('core') // Core
|
||||
include('proto125') // Protocol 1.2.5
|
||||
include('proto125_netty') // Protocol 1.2.5 (Netty impl.)
|
||||
|
||||
Reference in New Issue
Block a user