-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.settings.xml
40 lines (38 loc) · 1.46 KB
/
.travis.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
<settings>
<profiles>
<profile>
<id>curity-nexus</id>
<repositories>
<repository>
<id>customer-snapshot-repo</id>
<url>https://nexus.curity.se/nexus/content/repositories/customer-snapshot-repo/</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
<repository>
<id>customer-release-repo</id>
<url>https://nexus.curity.se/nexus/content/repositories/customer-release-repo/</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<!--make the profile active all the time -->
<activeProfile>curity-nexus</activeProfile>
</activeProfiles>
<servers>
<!-- Curity Nexus Repository access -->
<server>
<id>customer-snapshot-repo</id>
<username>${env.MAVEN_USERNAME}</username>
<password>${env.MAVEN_PASSWORD}</password>
</server>
<server>
<id>customer-release-repo</id>
<username>${env.MAVEN_USERNAME}</username>
<password>${env.MAVEN_PASSWORD}</password>
</server>
</servers>
</settings>