-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.xml
130 lines (123 loc) · 4.46 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<pluginGroups>
</pluginGroups>
<proxies>
</proxies>
<servers>
<server>
<id>snapshots</id>
<username>${user}</username>
<password>${password}</password>
</server>
<server>
<id>releases</id>
<username>${user}</username>
<password>${password}</password>
</server>
<server>
<id>cws-snapshots</id>
<username>${user}</username>
<password>${password</password>
</server>
<server>
<id>cws-releases</id>
<username>${user}</username>
<password>${password</password>
</server>
<server>
<id>cws-nexus</id>
<username>${shadow-user}</username>
<password>${shadow-password}</password>
</server>
</servers>
<profiles>
<profile>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>cws-nexus</id>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<url>https://nexus.cwscloud.net/repository/central</url>
</repository>
<repository>
<id>cws-snapshots</id>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
<url>https://nexus.cwscloud.net/repository/snapshots</url>
</repository>
<repository>
<id>cws-releases</id>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<url>https://nexus.cwscloud.net/repository/releases</url>
</repository>
<repository>
<id>jcenter-snapshots</id>
<snapshots>
<enabled>false</enabled>
</snapshots>
<name>jcenter</name>
<url>https://jcenter.bintray.com/</url>
</repository>
<repository>
<id>bintray-adjohnson916-maven</id>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<name>bintray-adjohnson916-maven</name>
<url>http://dl.bintray.com/adjohnson916/maven</url>
</repository>
<repository>
<id>jgit-repository</id>
<snapshots>
<enabled>false</enabled>
</snapshots>
<url>https://repo.eclipse.org/content/groups/releases/</url>
</repository>
<repository>
<id>bintray-adjohnson916-maven</id>
<snapshots>
<enabled>false</enabled>
</snapshots>
<name>bintray-adjohnson916-maven</name>
<url>https://dl.bintray.com/adjohnson916/maven/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>cws-nexus</id>
<url>https://nexus.cwscloud.net/repository/central</url>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<mirrors>
<mirror>
<id>cws-nexus</id>
<name>cws-nexus</name>
<url>https://nexus.cwscloud.net/repository/central</url>
<mirrorOf>central,cws-nexus</mirrorOf>
</mirror>
</mirrors>
</settings>