mirror of https://github.com/apache/lucene.git
12 lines
297 B
Groovy
12 lines
297 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')
|
||
|
}
|
||
|
}
|
||
|
}
|