Files
heritrix3/.github/workflows/m2-settings.xml
T
Alex Osborne a5c610f488 Switch from Travis CI to Github Actions
The CI builds are no longer working as travis-ci.org has been
discontinued so switch to using Github Actions instead.

We need to use a custom settings.xml for now as Maven now blocks
non-https repositories by default and builds.archive.org isn't
available via https.
2021-06-22 12:16:08 +09:00

15 lines
662 B
XML

<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 http://maven.apache.org/xsd/settings-1.2.0.xsd">
<mirrors>
<!-- unblock builds.archive.org mirror as it doesn't support https :-( -->
<mirror>
<id>builds.archive.org,maven2,mirror</id>
<mirrorOf>builds.archive.org,maven2</mirrorOf>
<name>builds.archive.org,maven2,mirror</name>
<url>http://builds.archive.org/maven2</url>
<blocked>false</blocked>
</mirror>
</mirrors>
</settings>