mirror of https://github.com/apache/kafka.git
MINOR: Remove unneccessary version from excluded dependencies of clients (#15804)
Small cleanup: removed version when excluding shaded dependencies from clients library as it's not needed. Reviewers: Luke Chen <showuon@gmail.com>, Chia-Ping Tsai <chia7712@gmail.com>
This commit is contained in:
parent
994077e43e
commit
a9b4b88e54
|
@ -1501,7 +1501,7 @@ project(':clients') {
|
|||
// dependencies excluded from the final jar, since they are declared as runtime dependencies
|
||||
dependencies {
|
||||
project.configurations.shadowed.allDependencies.each {
|
||||
exclude(dependency(it.group + ':' + it.name + ':' + it.version))
|
||||
exclude(dependency(it.group + ':' + it.name))
|
||||
}
|
||||
// exclude proto files from the jar
|
||||
exclude "**/opentelemetry/proto/**/*.proto"
|
||||
|
|
Loading…
Reference in New Issue