<settings xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>people.apache.org</id>
<username>$USERNAME</username>
<privateKey>$PATH_TO_PRIVATE_KEY</privateKey>
<passphrase>$SSH_PASSPHRASE</passphrase>
<directoryPermissions>775</directoryPermissions>
<filePermissions>644</filePermissions>
<!-- following is only for Windows only
<configuration>
<sshExecutable>plink</sshExecutable>
<scpExecutable>pscp</scpExecutable>
<scpArgs>-2Bp</scpArgs>
<sshArgs>-2</sshArgs>
</configuration>
-->
</server>
<server>
<id>apache.snapshots.https</id>
<username>$USERNAME</username>
<password>$APACHE_LDAP_PWD</password>
</server>
<server>
<id>apache.releases.https</id>
<username>$USERNAME</username>
<password>$APACHE_LDAP_PWD</password>
</server>
</servers>
<profiles>
<profile>
<id>apache-release</id>
<properties>
<gpg.passphrase>$SSH_PASSPHRASE</gpg.passphrase>
</properties>
</profile>
<profile>
<id>gpg-passphrase</id>
<properties>
<gpg.passphrase>$SSH_PASSPHRASE</gpg.passphrase>
</properties>
</profile>
</profiles>
</settings>