-
Notifications
You must be signed in to change notification settings - Fork 440
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
Slf4j metadata are fetched in each maven command #2106
Comments
I also recently encountered this. Adding the following to your <pluginRepositories>
<pluginRepository>
<id>spring-releases</id>
<name>Spring Releases</name>
<url>https://repo.spring.io/release</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</pluginRepository>
</pluginRepositories> This Spring blog post explains that connections shouldn't generally be made to https://repo.spring.io/release:
|
I'll look into it again. Thanks for the issue |
@marcingrzejszczak which version will include this fix? |
4.1.3, I've updated the milestone on this issue |
Describe the bug
It seems like #1909 is not fully fixed yet.
The plugin tries to download slf4j metadata on every maven command.
When I comment out the plugin the warnings disappear.
Sample
When I add additional pluginRepository configuration it doesn't make any difference.
The text was updated successfully, but these errors were encountered: