My mvn build is trying to grab the following file from an online repository.
http://BAD_WEBSITE/repositories/smpsnapshots/org/jboss/aop/jboss-aop/
2.0.0-SNAPSHOT/maven-metadata.xml
However, that URL no longer exists.
I have the maven-metadata.xml file saved locally, but how can I modify my POM file to get the file locally?
Here's where my config file specifies this bad URL to find the file.
SNAPSHOT.pom
<distributionManagement> <!-- Declare the release repository to deploy the
.zip file to -->
<repository>
<id>smpreleases</id>
<name>Releases</name>
<url>http://BAD_WEBSITE/content/repositories/smpreleases</url>
</repository>
<!-- Declare the snapshot repository to deploy the .zip file to -->
<snapshotRepository>
<id>smpsnapshots</id>
<name>Snapshots</name>
<url>http://BAD_WEBSITE/content/repositories/smpsnapshots</url>
</snapshotRepository>
</distributionManagement>