-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.xml
75 lines (75 loc) · 1.73 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
<settings>
<mirrors>
<mirror>
<id>remote-mirror</id>
<name>remote-mirror</name>
<url>http://ilutdto353.corp.amdocs.com:8081/repository/maven-central</url>
<mirrorOf>*</mirrorOf>
</mirror>
</mirrors>
<profiles>
<profile>
<id>global-properties</id>
<properties>
</properties>
</profile>
<profile>
<id>repositories</id>
<properties>
<repo.url>http://ilutdto353.corp.amdocs.com:8081/repository/maven-central</repo.url>
</properties>
<repositories>
<repository>
<id>remote-repo</id>
<name>remote-repo</name>
<url>${repo.url}/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>remote-repo</id>
<name>remote-repo</name>
<url>${repo.url}/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>global-properties</activeProfile>
<activeProfile>repositories</activeProfile>
</activeProfiles>
<servers>
<server>
<id>releases</id>
<username>${env.DEPLOY_USER}</username>
<password>${env.DEPLOY_PASSWORD}</password>
</server>
<server>
<id>snapshots</id>
<username>${env.DEPLOY_USER}</username>
<password>${env.DEPLOY_PASSWORD}</password>
</server>
<server>
<id>remote-mirror</id>
<configuration>
<httpConfiguration>
<get>
<readTimeout>480000</readTimeout> <!-- milliseconds -->
</get>
</httpConfiguration>
</configuration>
</server>
</servers>
</settings>