Skip to content

Instantly share code, notes, and snippets.

@parj
Created May 19, 2019 10:53
Show Gist options
  • Save parj/c59c71caae4010609430026d49c365a8 to your computer and use it in GitHub Desktop.
Save parj/c59c71caae4010609430026d49c365a8 to your computer and use it in GitHub Desktop.
Maven settings.xml
<?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>ossrh</id>
<username>${env.username}</username>
<password>${env.OSS_PASSWORD}</password>
</server>
<server>
<id>${env.GPG_KEYNAME}</id>
<passphrase>${env.GPG_PASSPHRASE}</passphrase>
</server>
</servers>
<profiles>
<profile>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.keyname>${env.GPG_KEYNAME}</gpg.keyname>
</properties>
</profile>
</profiles>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment