override https requirement for 4thline-repo

Maven blocks external HTTP repositories by default since version 3.8.1
(see https://maven.apache.org/docs/3.8.1/release-notes.html)

Signed-off-by: Jamin W. Collins <jamin.collins@gmail.com>
This commit is contained in:
Jamin W. Collins
2022-01-26 12:23:56 -07:00
parent 3d6baa441b
commit cfbad651a7
2 changed files with 16 additions and 0 deletions

15
.mvn/local-settings.xml Normal file
View File

@@ -0,0 +1,15 @@
<!--
Derived from: https://stackoverflow.com/a/67002852
-->
<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>
<mirror>
<id>4thline-repo-http-unblocker</id>
<mirrorOf>4thline-repo</mirrorOf>
<name></name>
<url>http://4thline.org/m2</url>
</mirror>
</mirrors>
</settings>

1
.mvn/maven.config Normal file
View File

@@ -0,0 +1 @@
--settings ./.mvn/local-settings.xml