Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 632 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 632 Bytes

Maven configuration to get binaries deploy to Maven central.

Sonatype guide

To release a project:

mvn release:prepare release:perform

Binaries will be deployed on Maven Central and Bintray.

Authentication configuration in settings.xml:

<server>
    <id>bintray</id>
    <username>***</username>
    <password>***</password>
</server>
<server>
    <id>ossrh</id>
    <username>***</username>
    <password>***</password>
</server>
<server>
    <id>gpg.passphrase</id>
    <passphrase>***</passphrase>
</server>