chore(pom): 配置私服仓库优先级并调整模块注释
- 添加福安德私服仓库配置,设置为优先从私服拉取依赖 - 配置阿里云仓库作为备用源,并设置相应的快照策略 - 为插件仓库也添加相同的私服配置 - 调整klp-hrm模块的注释格式以保持一致性
This commit is contained in:
35
pom.xml
35
pom.xml
@@ -490,7 +490,23 @@
|
||||
</resources>
|
||||
</build>
|
||||
|
||||
<!-- 仓库配置 - 优先从私服拉取依赖 -->
|
||||
<repositories>
|
||||
<!-- 福安德私服仓库 - 优先级最高 -->
|
||||
<repository>
|
||||
<id>nexus-fuande</id>
|
||||
<name>Fuande Private Repository</name>
|
||||
<url>http://49.232.154.205:10200/repository/maven-public/</url>
|
||||
<releases>
|
||||
<enabled>true</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>always</updatePolicy>
|
||||
</snapshots>
|
||||
</repository>
|
||||
|
||||
<!-- 阿里云公共仓库 - 备用 -->
|
||||
<repository>
|
||||
<id>public</id>
|
||||
<name>aliyun nexus</name>
|
||||
@@ -498,10 +514,29 @@
|
||||
<releases>
|
||||
<enabled>true</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<!-- 插件仓库配置 - 同样配置私服 -->
|
||||
<pluginRepositories>
|
||||
<!-- 福安德私服插件仓库 -->
|
||||
<pluginRepository>
|
||||
<id>nexus-fuande</id>
|
||||
<name>Fuande Private Repository</name>
|
||||
<url>http://49.232.154.205:10200/repository/maven-public/</url>
|
||||
<releases>
|
||||
<enabled>true</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>always</updatePolicy>
|
||||
</snapshots>
|
||||
</pluginRepository>
|
||||
|
||||
<!-- 阿里云插件仓库 - 备用 -->
|
||||
<pluginRepository>
|
||||
<id>public</id>
|
||||
<name>aliyun nexus</name>
|
||||
|
||||
Reference in New Issue
Block a user