We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 113939a commit e881558Copy full SHA for e881558
CONTRIBUTING.md
@@ -29,3 +29,26 @@ Before making a PR to this repository look out for the following guidelines.
29
30
**NOTE**: The `model` directory is **read-only** make sure not to edit it.
31
32
+## Publishing
33
+
34
+Publishing requires the presence of a `~/.gradle.properties` file:
35
36
+```shell
37
+signing.keyId=x1234567
38
+signing.password=
39
+signing.secretKeyRingFile=/Users/user/.gnupg/secring.gpg
40
41
+sonatypeUsername=xxxxxx
42
+sonatypePassword=
43
+```
44
45
+The `secring.gpg` file can be generated with:
46
47
48
+gpg --keyring secring.gpg --export-secret-keys > ~/.gnupg/secring.gpg
49
50
51
52
+./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository
53
54
0 commit comments