Skip to content

Latest commit

 

History

History
51 lines (35 loc) · 1.03 KB

MAINTAINERS.md

File metadata and controls

51 lines (35 loc) · 1.03 KB

Maintainers & Contributors

  • Colin Dellow

Feedback, issue reports, PRs, etc, welcome.

Doing a release to Maven Central

  1. Configure your ~/.m2/settings.xml:
<settings>
  <servers>
    <server>
      <id>ossrh</id>
      <username>jira-username</username>
      <password>jira-password</password>
    </server>
  </servers>
</settings>
  1. Create a gpg key

See http://central.sonatype.org/pages/working-with-pgp-signatures.html

  1. Publish to Sonatype

Set a non SNAPSHOT version.

mvn versions:set -DnewVersion=x.y.z
RELEASE=1 mvn clean deploy
  1. Validate

The build should flow to Maven Central automatically.

Inspect it at:

See also: