Skip to content

Commit c62b0a8

Browse files
author
Tom Wollnik
committed
add settings.xml file
1 parent 313128c commit c62b0a8

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

settings.xml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<settings>
2+
<servers>
3+
<server>
4+
<id>ossrh</id>
5+
<username>${env.MAVEN_REPO_USERNAME}</username>
6+
<password>${env.MAVEN_REPO_PASSWORD}</password>
7+
</server>
8+
</servers>
9+
<profiles>
10+
<profile>
11+
<id>release</id>
12+
<activation>
13+
<activeByDefault>true</activeByDefault>
14+
</activation>
15+
<properties>
16+
<gpg.executable>gpg</gpg.executable>
17+
<gpg.keyname>72A07B34207DF21F2CD468178D0084713489CE20</gpg.keyname>
18+
<gpg.passphrase>${env.MAVEN_GPG_PASSPHRASE}</gpg.passphrase>
19+
</properties>
20+
</profile>
21+
</profiles>
22+
</settings>

0 commit comments

Comments
 (0)