-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
Remove unused compile dependency in javaconfig x509 sample #6130
Comments
@raphaelDL What's the exact warning message you're getting when you run the build? |
oh god, that’s what I thought...
that’s the message @jgrandja |
@raphaelDL I see Give that a try and I think it should resolve the warning. |
lemme see |
This commit removes explicit declaration of slf4j dependencies. Instead, logback classic is declared that will pull them transitively. Fixes: spring-projectsgh-6130
You're all right, it worked.... I pushed a change @jgrandja. Thank you very much for your suggestion |
I dropped
and put
instead |
When building the project a warning is thrown stating that
org.slf4j:slf4j-api
is defined insamples/javaconfig/x509/spring-security-samples-javaconfig-x509.gradle
but no implementation is given.If we remove it we get rid of this warning and have a cleaner building process
Should we remove it?
The text was updated successfully, but these errors were encountered: