Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
sebthom committed Sep 5, 2024
1 parent 5e5f10d commit 74eb872
Showing 1 changed file with 25 additions and 4 deletions.
29 changes: 25 additions & 4 deletions .ci/maven-settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,8 @@
</activation>

<repositories>

<!-- https://stackoverflow.com/questions/5325407/how-to-set-order-of-repositories-in-maven-settings-xml/41810983#41810983 -->
<repository>
<id>1_repository-restored-from-cache</id>
<id>repository-restored-from-cache</id>
<url>file://${RESTORED_REPO_PATH}</url>
<releases>
<enabled>true</enabled>
Expand All @@ -37,7 +35,7 @@
</snapshots>
</repository>
<repository>
<id>2_central</id>
<id>central</id>
<url>https://repo.maven.apache.org/maven2</url>
<releases>
<enabled>true</enabled>
Expand All @@ -47,6 +45,29 @@
</snapshots>
</repository>
</repositories>

<pluginRepositories>
<pluginRepository>
<id>repository-restored-from-cache</id>
<url>file://${RESTORED_REPO_PATH}</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>central</id>
<url>https://repo.maven.apache.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>

Expand Down

0 comments on commit 74eb872

Please sign in to comment.