Skip to content

Commit

Permalink
add snapshot repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ottenhoff committed Apr 10, 2024
1 parent 6f6a656 commit 2c4c399
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,30 @@
</dependency>
</dependencies>
</dependencyManagement>

<profiles>
<profile>
<id>snapshots</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>snapshots</name>
</property>
</activation>
<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>

</project>

0 comments on commit 2c4c399

Please sign in to comment.