-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.xml
38 lines (36 loc) · 1.32 KB
/
settings.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 https://maven.apache.org/xsd/settings-1.2.0.xsd">
<servers>
<server>
<id>nexus-releases</id>
<username>admin</username>
<password>Jin11167377.</password>
</server>
<server>
<id>nexus-snapshots</id>
<username>admin</username>
<password>Jin11167377.</password>
</server>
</servers>
<mirrors>
<!-- Releases 仓库重定向 -->
<mirror>
<id>nnexus-releases</id>
<mirrorOf>nexus-releases</mirrorOf>
<url>http://8.208.90.124:8283/repository/maven-releases/</url>
</mirror>
<!-- Snapshots 仓库重定向 -->
<mirror>
<id>nexus-snapshots</id>
<mirrorOf>nexus-snapshots</mirrorOf>
<url>http://8.208.90.124:8283/repository/maven-snapshots/</url>
</mirror>
<!-- 覆盖默认的 HTTP 拦截器 -->
<mirror>
<id>allow-http</id>
<mirrorOf>maven-default-http-blocker</mirrorOf>
<url>http://8.208.90.124:8283/repository/maven-snapshots/</url>
</mirror>
</mirrors>
</settings>