-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathsettings.xml
More file actions
25 lines (25 loc) · 938 Bytes
/
settings.xml
File metadata and controls
25 lines (25 loc) · 938 Bytes
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
<?xml version='1.0' encoding='UTF-8'?>
<settings xsi:schemaLocation='http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd'
xmlns='http://maven.apache.org/SETTINGS/1.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
<servers>
<server>
<id>central</id>
<username>${env.SONATYPE_USER}</username>
<password>${env.SONATYPE_PASS}</password>
</server>
<server>
<id>nexus</id>
<username>${env.SONATYPE_USER}</username>
<password>${env.SONATYPE_PASS}</password>
</server>
<server>
<id>github</id>
<username>datadog</username>
<password>${env.GITHUB_TOKEN}</password>
</server>
<server>
<id>gpg.passphrase</id>
<passphrase>${env.GPG_PASSPHRASE}</passphrase>
</server>
</servers>
</settings>