-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.settings.xml
More file actions
61 lines (57 loc) · 2.12 KB
/
Copy path.travis.settings.xml
File metadata and controls
61 lines (57 loc) · 2.12 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
<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">
<servers>
<server>
<id>bintray-dptinfoutln-public</id>
<username>brunoe</username>
<password>${env.BINTRAY_API_KEY}</password>
</server>
<server>
<id>lsis-nexus</id>
<!-- ATTENTION UTILISER L'EMAIL UTLN -->
<username>${env.UTLN_EMAIL}</username>
<password>${env.UTLN_PASSWORD}</password>
</server>
</servers>
<profiles>
<profile>
<id>sonar</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<sonar.host.url>https://sonar.lsis.univ-tln.fr</sonar.host.url>
<!-- generate a token in https://sonar.lsis.univ-tln.fr/account/security -->
<sonar.login>${env.SONAR_TOKEN}</sonar.login>
</properties>
</profile>
<profile>
<id>bintray</id>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-dptinfoutln-public</id>
<name>bintray</name>
<url>https://dl.bintray.com/dptinfoutln/public</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-dptinfoutln-public</id>
<name>bintray-plugins</name>
<url>https://dl.bintray.com/dptinfoutln/public</url>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>bintray</activeProfile>
</activeProfiles>
</settings>