Skip to content

Commit

Permalink
add settings.xml file
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Wollnik committed Dec 17, 2020
1 parent 313128c commit c62b0a8
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<settings>
<servers>
<server>
<id>ossrh</id>
<username>${env.MAVEN_REPO_USERNAME}</username>
<password>${env.MAVEN_REPO_PASSWORD}</password>
</server>
</servers>
<profiles>
<profile>
<id>release</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.executable>gpg</gpg.executable>
<gpg.keyname>72A07B34207DF21F2CD468178D0084713489CE20</gpg.keyname>
<gpg.passphrase>${env.MAVEN_GPG_PASSPHRASE}</gpg.passphrase>
</properties>
</profile>
</profiles>
</settings>

0 comments on commit c62b0a8

Please sign in to comment.