79111119

Date: 2024-10-21 17:25:48
Score: 1
Natty:
Report link

Spring Cloud Contract is the culprit.

https://github.com/spring-cloud/spring-cloud-contract/blob/v3.1.7/pom.xml#L599C17-L599C34

As @karim-tafik have posted, we could fix it by overriding all repositories inherited from dependencies to central.

Since we know which repo is the culprit, instead of overriding all repositories to central, we should preferably disable the bad repository only.

<settings>
    <mirrors>
        <mirror>
            <id>central-for-bad-restlet</id>
            <mirrorOf>maven-restlet</mirrorOf>
            <url>https://repo.maven.apache.org/maven2/</url>
        </mirror>
    </mirrors>
</settings>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @karim-tafik
  • Low reputation (1):
Posted by: Chi Kim