Skip to content

Commit

Permalink
Declare separate georchestra maven repo for releases and snapshots
Browse files Browse the repository at this point in the history
A single repository declaration for both releases and snapshots
forbids adding a local nexus mirror, despite georchestras artifactory
being a single mirror for both types of dependencies.
  • Loading branch information
groldan committed Jan 15, 2024
1 parent f2ee8ee commit f9503e6
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,22 @@
<updatePolicy>always</updatePolicy>
<checksumPolicy>ignore</checksumPolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>georchestra</id>
<url>https://artifactory.georchestra.org/artifactory/maven</url>
</repository>
<repository>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>ignore</checksumPolicy>
</snapshots>
<id>georchestra</id>
<id>georchestra-snapshots</id>
<url>https://artifactory.georchestra.org/artifactory/maven</url>
</repository>
</repositories>
Expand Down

0 comments on commit f9503e6

Please sign in to comment.