18 lines
355 B
Groovy
18 lines
355 B
Groovy
ext {
|
|
netty_version = '4.1.22.Final';
|
|
|
|
library = [
|
|
rxjava: ['io.reactivex.rxjava3:rxjava:3.0.3'],
|
|
netty: [
|
|
"io.netty:netty-transport:$netty_version"
|
|
]
|
|
]
|
|
}
|
|
|
|
dependencies {
|
|
/* COMPONENTS */
|
|
compile project(':protocol')
|
|
compile library.rxjava
|
|
|
|
implementation library.netty
|
|
} |