Skip to content

Commit

Permalink
Merge pull request #930 from /issues/929-snapshot-configuration
Browse files Browse the repository at this point in the history
Fix #929: Add snapshot repository configuration
  • Loading branch information
romanstrobl authored Jan 1, 2021
2 parents 71f3ebe + b35848b commit c83abfd
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -173,13 +173,26 @@
</profile>
</profiles>

<repositories>
<repository>
<id>ossrh-snapshots</id>
<url>http://oss.sonatype.org/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<id>ossrh-snapshots-distribution</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<id>ossrh-staging-distribution</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
Expand Down

0 comments on commit c83abfd

Please sign in to comment.