Created
March 3, 2016 06:03
-
-
Save chrisjyoon/cdc9ddaa2f365da1d103 to your computer and use it in GitHub Desktop.
publish to bintray
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
| // 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' | |
| } |
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
| // project build.gradle | |
| dependencies { | |
| classpath 'com.novoda:bintray-release:0.3.4' | |
| } |
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
| ./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