Example Usage
<settings xmlns="https://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://maven.apache.org/SETTINGS/1.0.0
https://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>ossrh</id> <!-- the id must match with the repository id defined in distributionManagement -->
<username><!--your_oss_sonatype_username--></username>
<password><!--your_oss_sonatype_password--></password>
</server>
</servers>
<profiles>
<profile>
<id>ossrh</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.passphrase><!--your_gpg_passphrase--></gpg.passphrase>
</properties>
</profile>
</profiles>
</settings>