Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Go drop whatever staging repository may be in the maven repo

  • If you haven't set up gpg key, set up one using 4096 bit RSA (http://www.apache.org/dev/release-signing.html).
  • first set up ~/.gradle.properties like the following. Make sure that you can login to  https://repository.apache.org/ with you apache id/passwd. The value for signing.keyId can be found by running "gpg --list-secret-keys --fingerprint". The number after the / in the first line is your signing.keyId.

              mavenUrl=https://repository.apache.org/service/local/staging/deploy/maven2
              mavenUsername=your-apache-id
              mavenPassword=your-apache-passwd
              signing.keyId=gpgkey
              signing.password=gpg-passphrase
              signing.secretKeyRingFile=/Users/your-id/.gnupg/secring.gpg

  • cd ../../../
  • ./gradlew uploadArchivesAll

...