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:
Rajini Sivaram 2018-07-05 17:07:53 +01:00 committed by GitHub
parent c5b00d20d3
commit 1aea0834d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -564,6 +564,9 @@ project(':core') {
testCompile libs.easymock testCompile libs.easymock
testCompile(libs.apacheda) { testCompile(libs.apacheda) {
exclude group: 'xml-apis', module: 'xml-apis' 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.apachedsCoreApi
testCompile libs.apachedsInterceptorKerberos testCompile libs.apachedsInterceptorKerberos