Skip to content

Commit 20298fe

Browse files
committed
Use our build-repo for Maven downloads
1 parent 15acf1e commit 20298fe

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

java-devel/stackable/settings.xml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,43 @@
11
<settings>
2+
<mirrors>
3+
<mirror>
4+
<id>nexus</id>
5+
<mirrorOf>*</mirrorOf>
6+
<url>https://build-repo.stackable.tech/repository/maven-public/</url>
7+
</mirror>
8+
</mirrors>
9+
210
<profiles>
311
<profile>
412
<id>stackable</id>
13+
14+
<!--Enable snapshots for the built-in central repo to direct -->
15+
<!--all requests to nexus via the mirror -->
16+
<repositories>
17+
<repository>
18+
<id>central</id>
19+
<url>http://central</url>
20+
<releases>
21+
<enabled>true</enabled>
22+
</releases>
23+
<snapshots>
24+
<enabled>true</enabled>
25+
</snapshots>
26+
</repository>
27+
</repositories>
28+
<pluginRepositories>
29+
<pluginRepository>
30+
<id>central</id>
31+
<url>http://central</url>
32+
<releases>
33+
<enabled>true</enabled>
34+
</releases>
35+
<snapshots>
36+
<enabled>true</enabled>
37+
</snapshots>
38+
</pluginRepository>
39+
</pluginRepositories>
40+
541
<properties>
642
<!--
743
This is to work around an issue where Maven builds in Github Actions would randomly fail.

0 commit comments

Comments
 (0)