Skip to content

Commit

Permalink
chore: add maven repo
Browse files Browse the repository at this point in the history
  • Loading branch information
spawpaw committed Mar 21, 2018
1 parent 42876e8 commit 8a7f9fe
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,35 @@
<java.language.level>8</java.language.level>
</properties>

<repositories>
<!--默认使用阿里仓库-->
<repository>
<id>maven-ali</id>
<url>http://maven.aliyun.com/nexus/content/groups/public//</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
</repository>
<repository>
<!--maven中央仓库-->
<id>mvnrepository</id>
<name>mvnrepository</name>
<url>http://www.mvnrepository.com/</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>

<dependencies>
<!-- https://mvnrepository.com/artifact/org.hildan.fxgson/fx-gson -->
<dependency>
Expand Down

0 comments on commit 8a7f9fe

Please sign in to comment.