forked from novomatic-tech/nonsnapshot-maven-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.settings.xml
29 lines (27 loc) · 1.15 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
<settings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/SETTINGS/1.0.0" xsi:schemalocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>releases-repository-id</id>
<username>${env.RELEASES_REPOSITORY_USERNAME}</username>
<password>${env.RELEASES_REPOSITORY_PASSWORD}</password>
</server>
<server>
<id>snapshots-repository-id</id>
<username>${env.SNAPSHOTS_REPOSITORY_USERNAME}</username>
<password>${env.SNAPSHOTS_REPOSITORY_PASSWORD}</password>
</server>
</servers>
<profiles>
<profile>
<id>deploy</id>
<properties>
<releases-repository-address>${env.RELEASES_REPOSITORY_ADDRESS}</releases-repository-address>
<snapshots-repository-address>${env.SNAPSHOTS_REPOSITORY_ADDRESS}</snapshots-repository-address>
</properties>
</profile>
</profiles>
<activeProfiles>
<activeProfile>deploy</activeProfile>
</activeProfiles>
</settings>