Skip to content

Instantly share code, notes, and snippets.

@mmobin789
Last active April 24, 2021 02:59
Show Gist options
  • Save mmobin789/c3c964b3d4e01a28e641b0029f7d914f to your computer and use it in GitHub Desktop.
Save mmobin789/c3c964b3d4e01a28e641b0029f7d914f to your computer and use it in GitHub Desktop.
A gradle properties file required by maven central to publish & update a library.
GROUP=io.github.mmobin789.pixel
POM_ARTIFACT_ID=pixel
VERSION_NAME=1.0.0-alpha
POM_NAME=pixel
POM_PACKAGING=aar
POM_DESCRIPTION=A lightweight image loader for Android backed by Kotlin Coroutines.
POM_INCEPTION_YEAR=2020
POM_URL=https://github.com/mmobin789/pixel
POM_SCM_URL=https://github.com/mmobin789/pixel
POM_SCM_CONNECTION=scm:git@github.com:mmobin789/pixel.git
POM_SCM_DEV_CONNECTION=scm:git@github.com:mmobin789/pixel.git
POM_LICENCE_NAME=The Apache Software License, Version 2.0
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=mmobin789
POM_DEVELOPER_NAME=Mobin Munir
POM_DEVELOPER_URL=https://github.com/mmobin789
// Configure below signing parameters when you reach the final step 6.
signing.keyId=EF62A043 // (The last 8 digits of your .rev or .gpg key (You can also view this in gpg keychain app)
signing.password=mmobin789 // The passphrase you created when you created the key.
signing.secretKeyRingFile=secring.gpg // The path to the .gpg key file (If it's placed in your library module then only secring.gpg)
ossrhUsername=BmIIU1JK // (JIRA username which is same as nexus UI username) or username token.
ossrhPassword=LUdhejxtrEoDpT8Kdm9pvManP8EQeT9Lc/8AIQcaPnn4. // (JIRA password which is same as nexus UI password) or password token.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment