-
Notifications
You must be signed in to change notification settings - Fork 10
/
ci_settings.xml
30 lines (28 loc) · 1.22 KB
/
ci_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
<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">
<profiles>
<profile>
<id>default</id>
<properties>
<gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase>
<project.scm.develper.url>${env.SCM_DEVELOPER_URL}</project.scm.develper.url>
</properties>
</profile>
</profiles>
<servers>
<!-- public Sonatype repositories for snapshots and staging artifacts to be promoted to the Maven central repo -->
<server>
<id>sonatype-nexus-snapshots</id>
<username>${env.SONATYPE_NEXUS_SNAPSHOTS_USERNAME}</username>
<password>${env.SONATYPE_NEXUS_SNAPSHOTS_PASSWORD}</password>
</server>
<server>
<id>sonatype-nexus-staging</id>
<username>${env.SONATYPE_NEXUS_STAGING_USERNAME}</username>
<password>${env.SONATYPE_NEXUS_STAGING_PASSWORD}</password>
</server>
</servers>
<activeProfiles>
<activeProfile>default</activeProfile>
</activeProfiles>
</settings>