jcgay / jcgay-build-configuration

Maven configuration

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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>

About

Maven configuration

License:MIT License