Skip to content

Commit

Permalink
ci: add back central repo for efficiency
Browse files Browse the repository at this point in the history
When adding a custom repository, central repo inherited from Maven parent is tried last, instead of first.
This causes builds to be slower, as most dependencies are resolved via central.
  • Loading branch information
rquinio1A committed Jan 16, 2025
1 parent 49ff964 commit 5182c2f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,21 @@
<module>deployment</module>
</modules>
<repositories>
<repository>
<id>central</id>
<name>Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>splunk</id>
<name>Splunk Releases</name>
<url>https://splunk.jfrog.io/splunk/ext-releases-local</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<dependencyManagement>
Expand Down

0 comments on commit 5182c2f

Please sign in to comment.