mirror of https://github.com/apache/kafka.git
Use local exclusion for `jline` and `netty`
As suggested by Grant Henke.
This commit is contained in:
parent
482b6c0504
commit
2d3d714641
12
build.gradle
12
build.gradle
|
@ -663,7 +663,11 @@ project(':streams') {
|
|||
compile project(':connect:json') // this dependency should be removed after we unify data API
|
||||
compile libs.slf4jlog4j
|
||||
compile libs.rocksDBJni
|
||||
compile libs.zkclient // this dependency should be removed after KIP-4
|
||||
// this dependency should be removed after KIP-4
|
||||
compile (libs.zkclient) {
|
||||
exclude module: 'jline'
|
||||
exclude module: 'netty'
|
||||
}
|
||||
compile libs.jacksonDatabind // this dependency should be removed after KIP-4
|
||||
|
||||
testCompile project(':clients').sourceSets.test.output
|
||||
|
@ -672,12 +676,6 @@ project(':streams') {
|
|||
testCompile libs.junit
|
||||
}
|
||||
|
||||
configurations {
|
||||
// manually exclude unnecessary zkclient transitive dependencies, remove this after KIP-4
|
||||
compile.exclude module: 'jline'
|
||||
compile.exclude module: 'netty'
|
||||
}
|
||||
|
||||
javadoc {
|
||||
include "**/org/apache/kafka/streams/**"
|
||||
exclude "**/internals/**"
|
||||
|
|
Loading…
Reference in New Issue