lucene/gradle/ant-compat/force-versions.gradle

12 lines
297 B
Groovy
Raw Normal View History

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')
}
}
}