Created
May 7, 2016 02:26
-
-
Save BCsl/396fd7c5e82edb37248138f9cd58318d to your computer and use it in GitHub Desktop.
Gradle Signed
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
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