Created
May 5, 2017 14:32
-
-
Save florent37/aa33042ca5e75cf0e3dddb901a95aa90 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 | |
task sourcesJar(type: Jar) { | |
from sourceSets.main.allSource | |
classifier = 'sources' | |
} | |
task javadocJar(type: Jar, dependsOn: javadoc) { | |
classifier = 'javadoc' | |
from javadoc.destinationDir | |
} | |
artifacts { | |
archives javadocJar | |
archives sourcesJar | |
} | |
// Bintray | |
def _user = System.getenv("BINTRAY_USER") | |
def _key = System.getenv("BINTRAY_API_KEY") | |
def _passphrase = System.getenv("BINTRAY_PASSPHRASE") | |
if(project.rootProject.file('local.properties').exists()){ | |
Properties properties = new Properties() | |
properties.load(project.rootProject.file('local.properties').newDataInputStream()) | |
def local_user = properties.getProperty("bintray.user"); | |
if(local_user != null) _user = local_user; | |
def local_key = properties.getProperty("bintray.apikey"); | |
if(local_key != null) _key = local_key; | |
def local_passphrase = properties.getProperty("bintray.gpg.password"); | |
if(local_passphrase != null) _passphrase = local_passphrase; | |
} | |
bintray { | |
user = _user | |
key = _key | |
override = true | |
configurations = ['archives'] | |
pkg { | |
repo = bintrayRepo | |
name = bintrayName | |
desc = libraryDescription | |
userOrg = orgName | |
websiteUrl = siteUrl | |
vcsUrl = gitUrl | |
licenses = ['Apache-2.0'] | |
publish = true | |
publicDownloadNumbers = true | |
version { | |
desc = libraryDescription | |
gpg { | |
sign = true //Determines whether to GPG sign the files. The default is false | |
passphrase = _passphrase | |
//Optional. The passphrase for GPG signing' | |
} | |
} | |
} | |
} | |
//from https://github.com/workarounds/bundler/blob/master/gradle/bintray-java-v1.gradle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment