Commit 106effacffac0d1d365667686da3d94936bba88f
1 parent
58d94513
添加过滤。添加maven远程仓库地址
Showing
2 changed files
with
26 additions
and
2 deletions
.gitignore
pom.xml
@@ -72,7 +72,30 @@ | @@ -72,7 +72,30 @@ | ||
72 | <url>http://nexus.vipzhuang.cn/content/repositories/snapshots/</url> | 72 | <url>http://nexus.vipzhuang.cn/content/repositories/snapshots/</url> |
73 | </snapshotRepository> | 73 | </snapshotRepository> |
74 | </distributionManagement> | 74 | </distributionManagement> |
75 | - | 75 | + |
76 | + <repositories> | ||
77 | + <repository> | ||
78 | + <id>nexus</id> | ||
79 | + <url>http://nexus.vipzhuang.cn/content/groups/public</url> | ||
80 | + <releases> | ||
81 | + <enabled>true</enabled> | ||
82 | + </releases> | ||
83 | + <snapshots> | ||
84 | + <enabled>false</enabled> | ||
85 | + </snapshots> | ||
86 | + </repository> | ||
87 | + <repository> | ||
88 | + <id>nexus-snapshots</id> | ||
89 | + <url>http://nexus.vipzhuang.cn/content/repositories/snapshots/</url> | ||
90 | + <releases> | ||
91 | + <enabled>false</enabled> | ||
92 | + </releases> | ||
93 | + <snapshots> | ||
94 | + <enabled>true</enabled> | ||
95 | + </snapshots> | ||
96 | + </repository> | ||
97 | + </repositories> | ||
98 | + | ||
76 | <properties> | 99 | <properties> |
77 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | 100 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
78 | 101 |