Skip to content

Commit

Permalink
feat: add profile which allows the use of snapshots (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
chingor13 committed Oct 8, 2019
1 parent 8915507 commit 678d898
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion pom.xml
Expand Up @@ -398,7 +398,21 @@
</plugins>
</build>
</profile>

<profile>
<id>allow-snapshots</id>
<repositories>
<repository>
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
<profile>
<!-- Only run checkstyle plugin on Java 8+ (checkstyle artifact only supports Java 8+) -->
<id>checkstyle-tests</id>
Expand Down

0 comments on commit 678d898

Please sign in to comment.