safer way to exclude excess slf4 binding
This commit is contained in:
@@ -59,11 +59,6 @@ configurations {
|
|||||||
// should be used only for generation of the stubs, the lib contains grpc classes
|
// should be used only for generation of the stubs, the lib contains grpc classes
|
||||||
compile.exclude group: "com.salesforce.servicelibs", module: "reactor-grpc"
|
compile.exclude group: "com.salesforce.servicelibs", module: "reactor-grpc"
|
||||||
|
|
||||||
|
|
||||||
all {
|
|
||||||
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
@@ -110,7 +105,9 @@ dependencies {
|
|||||||
testImplementation libs.bundles.testcontainers
|
testImplementation libs.bundles.testcontainers
|
||||||
testImplementation libs.bundles.junit
|
testImplementation libs.bundles.junit
|
||||||
|
|
||||||
testImplementation libs.spring.boot.starter.test
|
testImplementation(libs.spring.boot.starter.test) {
|
||||||
|
exclude module: 'spring-boot-starter-logging'
|
||||||
|
}
|
||||||
testImplementation libs.grpc.testing
|
testImplementation libs.grpc.testing
|
||||||
|
|
||||||
detektPlugins libs.detekt.formatting
|
detektPlugins libs.detekt.formatting
|
||||||
|
|||||||
Reference in New Issue
Block a user