KAFKA-7741: Streams exclude javax dependency (#6121)

As documented in https://issues.apache.org/jira/browse/KAFKA-7741,
the javax dependency we receive transitively from connect is incompatible
with SBT builds.

Streams doesn't use the portion of Connect that needs the dependency,
so we can fix the builds by simply excluding it.

Reviewers: Bill Bejeck <bill@confluent.io>, Guozhang Wang <guozhang@confluent.io>
This commit is contained in:
John Roesler 2019-01-10 17:50:52 -06:00 committed by Guozhang Wang
parent c238af29bf
commit b4bf6232c2
1 changed files with 7 additions and 1 deletions

View File

@ -966,7 +966,13 @@ project(':streams') {
dependencies {
compile project(':clients')
compile project(':connect:json') // this dependency should be removed after we unify data API
// this dependency should be removed after we unify data API
compile(project(':connect:json')) {
// this transitive dependency is not used in Streams, and it breaks SBT builds
exclude module: 'javax.ws.rs-api'
}
compile libs.slf4jApi
compile libs.rocksDBJni