Skip to content

Latest commit

 

History

History
37 lines (32 loc) · 633 Bytes

RELEASING.md

File metadata and controls

37 lines (32 loc) · 633 Bytes

How to release

Add this to ~/.m2/settings.xml:

<settings>
  <servers>
    <server>
      <id>ossrh</id>
      <username>YOUR USERNAME></username>
      <password>YOUR PASSWORD</password>
    </server>
  </servers>
</settings>

and

<profiles>
  <profile>
    <id>ossrh</id>
    <activation>
      <activeByDefault>true</activeByDefault>
    </activation>
    <properties>
      <gpg.executable>gpg</gpg.executable>
      <gpg.passphrase>PASSPHRASE</gpg.passphrase>
    </properties>
  </profile>
</profiles>
$ mvn release:clean release:prepare -DreleaseVersion=$NEW_VERSION
$ mvn release:perform