# bintray-release **Repository Path**: mirrors_YoKeyword/bintray-release ## Basic Information - **Project Name**: bintray-release - **Description**: A helper for releasing from gradle up to bintray - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-01-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # bintray-release [![](https://ci.novoda.com/buildStatus/icon?job=bintray-release)](https://ci.novoda.com/job/bintray-release/lastBuild/console) [![Download](https://api.bintray.com/packages/novoda/maven/bintray-release/images/download.svg) ](https://bintray.com/novoda/maven/bintray-release/_latestVersion) [![](https://raw.githubusercontent.com/novoda/novoda/master/assets/btn_apache_lisence.png)](LICENSE.txt) Super duper easy way to release your Android and other artifacts to bintray. ## Description This is a helper for releasing libraries to bintray. It is intended to help configuring stuff related to maven and bintray. At the moment it works with Android Library projects, plain Java and plain Groovy projects, but our focus is to mainly support Android projects. ## Adding to project To publish a library to bintray using this plugin, add these dependencies to the `build.gradle` of the module that will be published: ```groovy apply plugin: 'com.novoda.bintray-release' // must be applied after your artifact generating plugin (eg. java / com.android.library) buildscript { repositories { jcenter() } dependencies { classpath 'com.novoda:bintray-release: } } ``` ## Simple usage Use the `publish` closure to set the info of your package: ```groovy publish { userOrg = 'novoda' groupId = 'com.novoda' artifactId = 'bintray-release' publishVersion = '0.3.4' desc = 'Oh hi, this is a nice description for a project, right?' website = 'https://github.com/novoda/bintray-release' } ``` Finally, use the task `bintrayUpload` to publish (make sure you build the project first!): ```bash $ ./gradlew clean build bintrayUpload -PbintrayUser=BINTRAY_USERNAME -PbintrayKey=BINTRAY_KEY -PdryRun=false ``` More info on the available properties and other usages in the [Github Wiki](https://github.com/novoda/bintray-release/wiki). ## Links Here are a list of useful links: * We always welcome people to contribute new features or bug fixes, [here is how](https://github.com/novoda/novoda/blob/master/CONTRIBUTING.md) * If you have a problem check the [Issues Page](https://github.com/novoda/bintray-release/issues) first to see if we are working on it * For further usage or to delve more deeply checkout the [Project Wiki](https://github.com/novoda/bintray-release/wiki) * Looking for community help, browse the already asked [Stack Overflow Questions](http://stackoverflow.com/questions/tagged/support-bintray-release) or use the tag: `support-bintray-release` when posting a new question