mirror of https://github.com/apache/lucene.git
20 lines
514 B
Groovy
20 lines
514 B
Groovy
|
|
// 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')
|
|
}
|
|
}
|
|
}
|
|
|
|
configure(project(":solr:server")) {
|
|
afterEvaluate {
|
|
dependencies {
|
|
libExt enforcedPlatform('org.slf4j:slf4j-api:1.7.24')
|
|
libExt enforcedPlatform('commons-logging:commons-logging:1.1.3')
|
|
}
|
|
}
|
|
} |