Skip to content

Bump org.slf4j:slf4j-api from 1.7.7 to 2.0.17 #118

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ configurations.all {
// not sure why, but couldn't get an exclusion on the auth2 client to work, which
// was upgrading slf4j and breaking tests
resolutionStrategy {
force 'org.slf4j:slf4j-api:1.7.7'
force 'org.slf4j:slf4j-api:2.0.17'
}
}

Expand Down Expand Up @@ -342,7 +342,7 @@ dependencies {
// moved to a test implementation if we swap the callback service for the
// python docker image
implementation('ch.qos.logback:logback-classic:1.1.2')
implementation('org.slf4j:slf4j-api:1.7.7')
implementation('org.slf4j:slf4j-api:2.0.17')
// TODO DEPS the annotation api is also needed for
// a couple of SDK compiled classes in mobu/runner that should be factored out
implementation('javax.annotation:javax.annotation-api:1.3.2')
Expand Down Expand Up @@ -387,7 +387,7 @@ dependencies {
generatedCodeClasspath('org.hamcrest:hamcrest-core:1.3')
generatedCodeClasspath('org.ini4j:ini4j:0.5.2')
generatedCodeClasspath('org.syslog4j:syslog4j:0.9.46')
generatedCodeClasspath('org.slf4j:slf4j-api:1.7.7')
generatedCodeClasspath('org.slf4j:slf4j-api:2.0.17')
}

task showTestClassPath {
Expand Down
Loading