forked from shiningpanda/tutorial-python-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.xml
More file actions
69 lines (69 loc) · 1.73 KB
/
settings.xml
File metadata and controls
69 lines (69 loc) · 1.73 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<settings xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<mirror>
<id>nexus</id>
<mirrorOf>*</mirrorOf>
<url>http://localhost:8081/nexus/content/groups/public</url>
</mirror>
</mirrors>
<profiles>
<profile>
<id>nexus</id>
<repositories>
<repository>
<id>central</id>
<url>http://central</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>http://central</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
<profile>
<id>properties</id>
<properties>
<release.scm.username>xxx</release.scm.username>
<release.scm.password>xxx</release.scm.password>
<nexus.username>xxx</nexus.username>
<nexus.password>xxx</nexus.password>
</properties>
</profile>
</profiles>
<activeProfiles>
<activeProfile>nexus</activeProfile>
<activeProfile>properties</activeProfile>
</activeProfiles>
<servers>
<server>
<id>nexus</id>
<username>${nexus.username}</username>
<password>${nexus.password}</password>
</server>
<server>
<id>releases</id>
<username>${nexus.username}</username>
<password>${nexus.password}</password>
</server>
<server>
<id>snapshots</id>
<username>${nexus.username}</username>
<password>${nexus.password}</password>
</server>
</servers>
</settings>