forked from searchbox-io/Jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.xml
25 lines (25 loc) · 857 Bytes
/
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
<?xml version="1.0" encoding="utf8"?>
<settings>
<servers>
<server>
<id>ossrh</id>
<username>${env.SONATYPE_USERNAME}</username>
<password>${env.SONATYPE_PASSWORD}</password>
</server>
</servers>
<profiles>
<profile>
<id>ossrh</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.executable>gpg</gpg.executable>
<gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase>
<gpg.defaultKeyring>false</gpg.defaultKeyring>
<gpg.publicKeyring>./local.pubring.gpg</gpg.publicKeyring>
<gpg.secretKeyring>./local.secring.gpg</gpg.secretKeyring>
</properties>
</profile>
</profiles>
</settings>