mirror of https://github.com/apache/kafka.git
MINOR: Avoid conflicting versions of org.apache.mina for MiniKdc deps (#5336)
`mina-core` is a transitive dependency for `apacheds` and `apacheda`. It is safer to use from `apacheds` since that is the implementation. Reviewers: Ismael Juma <ismael@juma.me.uk>
This commit is contained in:
parent
c5b00d20d3
commit
1aea0834d3
|
@ -564,6 +564,9 @@ project(':core') {
|
|||
testCompile libs.easymock
|
||||
testCompile(libs.apacheda) {
|
||||
exclude group: 'xml-apis', module: 'xml-apis'
|
||||
// `mina-core` is a transitive dependency for `apacheds` and `apacheda`.
|
||||
// It is safer to use from `apacheds` since that is the implementation.
|
||||
exclude module: 'mina-core'
|
||||
}
|
||||
testCompile libs.apachedsCoreApi
|
||||
testCompile libs.apachedsInterceptorKerberos
|
||||
|
|
Loading…
Reference in New Issue