7 lines
318 B
Groovy
7 lines
318 B
Groovy
|
dependencies {
|
||
|
compile project(':netty-http-server')
|
||
|
implementation "org.reactivestreams:reactive-streams:${project.property('reactivestreams.version')}"
|
||
|
testImplementation("org.reactivestreams:reactive-streams-tck:${project.property('reactivestreams.version')}") {
|
||
|
exclude module: 'testng'
|
||
|
}
|
||
|
}
|