Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

MicroDocs core Java

Core functionaries used across other MicroDocs Java projects

Build

$ gradle jar

Publish to Maven Central

  1. Create a sonatype account and create an issue to request access to com.maxxton
  2. Install GnuPG NOTE: at least version 2.1!
  3. Generate key pair by running:
$ gpg --full-generate-key

choose RSA 2048bit with no expiration. Your key is saved in ~/.gnupg 4. Run this to update your secring.gpg:

$ gpg --keyring secring.gpg --export-secret-keys > ~/.gnupg/secring.gpg
  1. Create gradle.properties in the gradle home folder (~/.gradle) ~/.gradle/gradle.properties
signing.keyId=publickeyid
signing.password=yourpassword
signing.secretKeyRingFile=C:\\Users\\username\\.gnupg\\secring.gpg

sonatypeUsername=username
sonatypePassword=password

Fill in these properties correctly. Use 'gpg --list-secret-keys --keyid-format 0xshort' to get your keyId

  1. Publish
$ gradle uploadArchives

And follow the release and deployment manual Check this link for more info on the signing plugin