2019-12-13 06:01:26 -05:00
|
|
|
|
|
|
|
// Force versions of certain components to align them with ant build.
|
|
|
|
|
|
|
|
subprojects {
|
|
|
|
plugins.withType(JavaPlugin) {
|
|
|
|
dependencies {
|
|
|
|
implementation enforcedPlatform('org.slf4j:slf4j-api:1.7.24')
|
|
|
|
implementation enforcedPlatform('commons-logging:commons-logging:1.1.3')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-30 08:05:08 -05:00
|
|
|
|
|
|
|
configure(project(":solr:server")) {
|
|
|
|
afterEvaluate {
|
|
|
|
dependencies {
|
|
|
|
libExt enforcedPlatform('org.slf4j:slf4j-api:1.7.24')
|
|
|
|
libExt enforcedPlatform('commons-logging:commons-logging:1.1.3')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|