19 lines
414 B
Groovy
19 lines
414 B
Groovy
group 'mc'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
ext {
|
|
netty_version = '4.1.22.Final'
|
|
}
|
|
|
|
dependencies {
|
|
/* Core */
|
|
compile_excludeCopy rootProject
|
|
|
|
/* 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')
|
|
}
|