Skip to content

Commit 42626dc

Browse files
Add settings.xml.
1 parent c6d1b0f commit 42626dc

File tree

1 file changed

+80
-0
lines changed

1 file changed

+80
-0
lines changed

settings.xml

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<settings xsi:schemaLocation="https://maven.apache.org/SETTINGS/1.1.0 https://maven.apache.org/xsd/settings-1.1.0.xsd" xmlns="https://maven.apache.org/SETTINGS/1.1.0"
3+
xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance">
4+
<servers>
5+
<server>
6+
<username>${repo.login}</username>
7+
<password>${repo.password}</password>
8+
<id>central</id>
9+
</server>
10+
<server>
11+
<username>${repo.login}</username>
12+
<password>${repo.password}</password>
13+
<id>snapshots</id>
14+
</server>
15+
<server>
16+
<username>${openshiftRepo.login}</username>
17+
<password>${openshiftRepo.password}</password>
18+
<id>openshift-releases</id>
19+
</server>
20+
<server>
21+
<username>${openshiftRepo.login}</username>
22+
<password>${openshiftRepo.password}</password>
23+
<id>openshift-snapshots</id>
24+
</server>
25+
</servers>
26+
<profiles>
27+
<profile>
28+
<repositories>
29+
<repository>
30+
<snapshots>
31+
<enabled>false</enabled>
32+
</snapshots>
33+
<id>central</id>
34+
<name>libs-release</name>
35+
<url>https://bwa.nrs.gov.bc.ca/int/artifactory/libs-release</url>
36+
</repository>
37+
<repository>
38+
<snapshots />
39+
<id>snapshots</id>
40+
<name>libs-snapshot</name>
41+
<url>https://bwa.nrs.gov.bc.ca/int/artifactory/libs-snapshot</url>
42+
</repository>
43+
<repository>
44+
<snapshots>
45+
<enabled>false</enabled>
46+
</snapshots>
47+
<id>openshift-releases</id>
48+
<name>na12-pim-libs-release</name>
49+
<url>https://artifacts.developer.gov.bc.ca:443/artifactory/na12-pim-libs-release</url>
50+
</repository>
51+
<repository>
52+
<snapshots />
53+
<id>openshift-snapshots</id>
54+
<name>na12-pim-libs-snapshot</name>
55+
<url>https://artifacts.developer.gov.bc.ca:443/artifactory/na12-pim-libs-snapshot</url>
56+
</repository>
57+
</repositories>
58+
<pluginRepositories>
59+
<pluginRepository>
60+
<snapshots>
61+
<enabled>false</enabled>
62+
</snapshots>
63+
<id>central</id>
64+
<name>plugins-release</name>
65+
<url>https://bwa.nrs.gov.bc.ca/int/artifactory/plugins-release</url>
66+
</pluginRepository>
67+
<pluginRepository>
68+
<snapshots />
69+
<id>snapshots</id>
70+
<name>plugins-snapshot</name>
71+
<url>https://bwa.nrs.gov.bc.ca/int/artifactory/plugins-snapshot</url>
72+
</pluginRepository>
73+
</pluginRepositories>
74+
<id>artifactory</id>
75+
</profile>
76+
</profiles>
77+
<activeProfiles>
78+
<activeProfile>artifactory</activeProfile>
79+
</activeProfiles>
80+
</settings>

0 commit comments

Comments
 (0)