Skip to content

Instantly share code, notes, and snippets.

@BCsl
Created May 7, 2016 02:26
Show Gist options
  • Save BCsl/396fd7c5e82edb37248138f9cd58318d to your computer and use it in GitHub Desktop.
Save BCsl/396fd7c5e82edb37248138f9cd58318d to your computer and use it in GitHub Desktop.
Gradle Signed
final 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 = "maven"
name = "carousel"
vcsUrl = gitUrl
licenses = ["Apache-2.0"]
publish = true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment