-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathci-settings.xml
More file actions
106 lines (99 loc) · 3.48 KB
/
Copy pathci-settings.xml
File metadata and controls
106 lines (99 loc) · 3.48 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
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
<!-- A MAVEN SETTINGS FILE TO BE USED IN CI -->
<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 https://maven.apache.org/xsd/settings-1.0.0.xsd">
<!-- Mirror Configuration -->
<mirrors>
<mirror>
<id>maven-proxy</id>
<name>Maven Repository Manager</name>
<url>${env.MAVEN_PROXY_URL}</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
<!-- Server Configuration -->
<servers>
<!-- Server configuration for GitHub -->
<server>
<id>github</id>
<username>${env.GITHUBACTOR}</username>
<password>${env.GITHUBTOKEN}</password>
</server>
<server>
<id>githubpages</id>
<username>git</username>
<configuration>
<scmVersionType>branch</scmVersionType>
<scmVersion>gh-pages</scmVersion>
</configuration>
</server>
<server>
<id>dockerhub</id>
<username>${env.DOCKERHUB_TOKEN}</username>
<password>${env.DOCKERHUB_TOKEN}</password>
</server>
<server>
<id>ossrh</id>
<username>${env.MAVEN_CENTRAL_USERNAME}</username>
<password>${env.MAVEN_CENTRAL_TOKEN}</password>
</server>
<server>
<id>maven-proxy</id>
<username>${env.MAVEN_PROXY_USERNAME}</username>
<password>${env.MAVEN_PROXY_TOKEN}</password>
</server>
</servers>
<!-- Profile Configuration -->
<profiles>
<!-- Profile for Sonar -->
<profile>
<id>sonar</id>
<properties>
<sonar.host.url>${env.SONAR_URL}</sonar.host.url>
<sonar.login>${env.SONAR_TOKEN}</sonar.login>
</properties>
</profile>
<!-- Profile for GitHub -->
<!--profile>
<id>github</id>
<repositories>
<repository>
<id>central</id>
<url>https://central</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/${env.GITHUBORG}/*</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>https://central</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile-->
</profiles>
<!-- Active Profiles -->
<activeProfiles>
</activeProfiles>
</settings>