Skip to content

Commit

Permalink
Replace commons-logging with slf4j, similar to done on the ECR plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
chadlwilson committed Feb 19, 2022
1 parent 713f707 commit 4a728ef
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ dependencies {
implementation group: 'com.amazonaws', name: 'aws-java-sdk-ecr', version: '1.12.162'
implementation group: 'com.amazonaws', name: 'aws-java-sdk-sts', version: '1.12.162'

modules {
module('commons-logging:commons-logging') {
replacedBy('org.slf4j:jcl-over-slf4j', "Everything should go via SLF4J")
}
}
implementation group: 'org.slf4j', name: 'jcl-over-slf4j', version: '1.7.36'

testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.8.2'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.8.2'
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.8.2'
Expand Down

0 comments on commit 4a728ef

Please sign in to comment.