Created
May 19, 2019 10:53
-
-
Save parj/c59c71caae4010609430026d49c365a8 to your computer and use it in GitHub Desktop.
Maven settings.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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