mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-13 12:10:23 +00:00
15 lines
440 B
Groovy
15 lines
440 B
Groovy
subprojects {
|
|
plugins.withType(JavaPlugin) {
|
|
configurations.all {
|
|
resolutionStrategy {
|
|
dependencySubstitution {
|
|
//Prefer logback over slf4j-log4j
|
|
substitute module('org.slf4j:slf4j-log4j12') with module(externalDependency.logback)
|
|
|
|
// Use slf4j bridge for legacy log4j
|
|
substitute module('log4j:log4j') with module(externalDependency.log4j_over_slf4j)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |