-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitlab-ci_m2.xml
More file actions
38 lines (38 loc) · 1.27 KB
/
.gitlab-ci_m2.xml
File metadata and controls
38 lines (38 loc) · 1.27 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
<?xml version="1.0" encoding="UTF-8"?>
<settings>
<mirrors>
<mirror>
<!--This sends everything else to /public -->
<id>repository.dimas-maryanto.com</id>
<mirrorOf>*</mirrorOf>
<url>http://192.168.88.50:8081/repository/maven-public/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</mirror>
</mirrors>
<servers>
<server>
<id>repository.dimas-maryanto.com</id>
<username>developer</username>
<password>developer</password>
</server>
<!-- authentication for insecure registry puller-->
<server>
<id>repository.dimas-maryanto.com:8086</id>
<username>developer</username>
<password>developer</password>
</server>
<!-- authentication for insecure registry pusher-->
<server>
<id>repository.dimas-maryanto.com:8087</id>
<username>developer</username>
<password>developer</password>
</server>
</servers>
</settings>