aboutsummaryrefslogtreecommitdiffstats
path: root/RELEASE.md
blob: 5c05e036264596901644a9e2e0aa1c15fe159617 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
## Releasing

These are quick notes on using Maven to release artifacts to Sonatype.

### Snapshots

To release a snapshot to [Sonatype OSS Snapshots repository](https://oss.sonatype.org/content/repositories/snapshots/):

    mvn clean deploy

### Releases

Releases are deployed to [Sonatype OSSRH Staging](http://central.sonatype.org/pages/releasing-the-deployment.html) and then manually synced to Central.

To release with automated versioning and SCM integration:

    mvn release:clean release:prepare
    mvn release:perform

To release manually:

    mvn versions:set -DnewVersion=1.2.3
    mvn clean deploy -P release

### Settings.xml

Sonatype uploads are authenticated and require credentials.
GPG signing requires a passphrase to unlock the signing key.
Both of these secrets can be stored in `~/.m2/settings.xml`.

```xml
<settings>
  <servers>
    <server>
      <id>ossrh</id>
      <username>jira-username</username>
      <password>jira-password</password>
    </server>
  </servers>
  <profiles>
    <profile>
      <id>ossrh</id>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>
      <properties>
        <gpg.executable>gpg</gpg.executable>
        <gpg.passphrase>gpg-password</gpg.passphrase>
      </properties>
    </profile>
  </profiles>
</settings>
```