Last active
January 19, 2016 18:50
-
-
Save ncthbrt/0c7c034a4ea46ef7bbec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'com.jfrog.bintray' | |
version = libraryVersion | |
// Bintray | |
Properties properties = new Properties() | |
properties.load(project.rootProject.file('local.properties').newDataInputStream()) | |
bintray { | |
user = properties.getProperty("bintray.user") | |
key = properties.getProperty("bintray.apikey") | |
configurations = ['archives'] | |
pkg { | |
repo = bintrayRepo | |
name = bintrayName | |
desc = libraryDescription | |
websiteUrl = siteUrl | |
vcsUrl = gitUrl | |
licenses = allLicenses | |
publish = true | |
publicDownloadNumbers = true | |
version { | |
desc = libraryDescription | |
gpg { | |
sign = true //Determines whether to GPG sign the files. The default is false | |
passphrase = properties.getProperty("bintray.gpg.password") | |
//Optional. The passphrase for GPG signing' | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment