Skip to content

Commit

Permalink
fixes #92 add both release and snapshot repositories (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevehu authored May 22, 2019
1 parent 30bceeb commit e7f0cb9
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,32 @@
</repository>
</distributionManagement>

<repositories>
<repository>
<id>central</id>
<url>
https://oss.sonatype.org/content/repositories/releases
</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>snapshots</id>
<url>
https://oss.sonatype.org/content/repositories/snapshots
</url>
<snapshots>
<enabled>true</enabled>
<!-- never, daily, interval:X (where X is in minutes) or always -->
<!--<updatePolicy>daily</updatePolicy> -->
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>

<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down

0 comments on commit e7f0cb9

Please sign in to comment.