Skip to content

Instantly share code, notes, and snippets.

@chrisjyoon
Created March 3, 2016 06:03
Show Gist options
  • Select an option

  • Save chrisjyoon/cdc9ddaa2f365da1d103 to your computer and use it in GitHub Desktop.

Select an option

Save chrisjyoon/cdc9ddaa2f365da1d103 to your computer and use it in GitHub Desktop.
publish to bintray
// library build.gradle
apply plugin: 'com.android.library'
apply plugin: 'com.novoda.bintray-release'
publish {
userOrg = 'user'
groupId = 'package'
artifactId = 'artifactId'
publishVersion = '1.0'
desc = 'Description for library'
}
// project build.gradle
dependencies {
classpath 'com.novoda:bintray-release:0.3.4'
}
./gradlew clean build bintrayUpload -PbintrayUser=BINTRAY_USERNAME -PbintrayKey=BINTRAY_KEY -PdryRun=false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment