summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwangwenrui <[email protected]>2021-04-08 11:27:25 +0800
committerwangwenrui <[email protected]>2021-04-08 11:27:25 +0800
commit7d9f191af0ecc3ade15da6a13fd9935b79217757 (patch)
tree983b3b0d5bf1904b526cb68b021d80800094c4be
parenta3a2e26ed35d765a9bd94fce70a7ad5b4e055773 (diff)
feat:补充maven 仓库
-rw-r--r--pom.xml41
1 files changed, 41 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index d35e7b2..9b97a55 100644
--- a/pom.xml
+++ b/pom.xml
@@ -162,5 +162,46 @@
</plugins>
</build>
+ <repositories>
+ <repository>
+ <id>public</id>
+ <name>aliyun nexus</name>
+ <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ </repository>
+ <!--opennum仓库-->
+ <repository>
+ <id>opennms</id>
+ <name>opennms</name>
+ <url>https://repo.opennms.org/maven2/</url>
+ </repository>
+
+ <!-- 设置 jitpack.io 仓库 -->
+ <repository>
+ <id>jitpack.io</id>
+ <url>https://jitpack.io</url>
+ </repository>
+ </repositories>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>public</id>
+ <name>aliyun nexus</name>
+ <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </pluginRepository>
+
+ <!-- 设置 jitpack.io 插件仓库 -->
+ <pluginRepository>
+ <id>jitpack.io</id>
+ <url>https://jitpack.io</url>
+ </pluginRepository>
+ </pluginRepositories>
</project>