This repository has been archived by the owner on Mar 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
travis-settings.xml
57 lines (57 loc) · 1.89 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<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
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>harding-capstone ai</id>
<username>${env.GITHUB_USER}</username>
<password>${env.GITHUB_ACCESS_TOKEN}</password>
</server>
<server>
<id>harding-capstone common</id>
<username>${env.GITHUB_USER}</username>
<password>${env.GITHUB_ACCESS_TOKEN}</password>
</server>
<server>
<id>harding-capstone engine</id>
<username>${env.GITHUB_USER}</username>
<password>${env.GITHUB_ACCESS_TOKEN}</password>
</server>
<server>
<id>harding-capstone events</id>
<username>${env.GITHUB_USER}</username>
<password>${env.GITHUB_ACCESS_TOKEN}</password>
</server>
<server>
<id>harding-capstone logic</id>
<username>${env.GITHUB_USER}</username>
<password>${env.GITHUB_ACCESS_TOKEN}</password>
</server>
<server>
<id>harding-capstone network</id>
<username>${env.GITHUB_USER}</username>
<password>${env.GITHUB_ACCESS_TOKEN}</password>
</server>
<server>
<id>harding-capstone pom</id>
<username>${env.GITHUB_USER}</username>
<password>${env.GITHUB_ACCESS_TOKEN}</password>
</server>
<server>
<id>harding-capstone server</id>
<username>${env.GITHUB_USER}</username>
<password>${env.GITHUB_ACCESS_TOKEN}</password>
</server>
<server>
<id>harding-capstone storage</id>
<username>${env.GITHUB_USER}</username>
<password>${env.GITHUB_ACCESS_TOKEN}</password>
</server>
<server>
<id>harding-capstone tui</id>
<username>${env.GITHUB_USER}</username>
<password>${env.GITHUB_ACCESS_TOKEN}</password>
</server>
</servers>
</settings>