{"id":13429351,"url":"https://github.com/novoda/bintray-release","last_synced_at":"2025-09-28T19:31:59.502Z","repository":{"id":21987588,"uuid":"25312557","full_name":"novoda/bintray-release","owner":"novoda","description":"A helper for releasing from gradle up to bintray","archived":true,"fork":false,"pushed_at":"2022-02-11T06:01:47.000Z","size":676,"stargazers_count":1855,"open_issues_count":0,"forks_count":208,"subscribers_count":76,"default_branch":"master","last_synced_at":"2024-09-27T02:44:40.417Z","etag":null,"topics":["bintray","novoda","open-source","release-automation"],"latest_commit_sha":null,"homepage":"","language":"Groovy","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/novoda.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-10-16T17:04:56.000Z","updated_at":"2024-09-23T14:21:16.000Z","dependencies_parsed_at":"2022-09-12T06:30:17.925Z","dependency_job_id":null,"html_url":"https://github.com/novoda/bintray-release","commit_stats":null,"previous_names":[],"tags_count":25,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/novoda%2Fbintray-release","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/novoda%2Fbintray-release/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/novoda%2Fbintray-release/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/novoda%2Fbintray-release/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/novoda","download_url":"https://codeload.github.com/novoda/bintray-release/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234555881,"owners_count":18851864,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bintray","novoda","open-source","release-automation"],"created_at":"2024-07-31T02:00:35.678Z","updated_at":"2025-09-28T19:31:54.122Z","avatar_url":"https://github.com/novoda.png","language":"Groovy","funding_links":[],"categories":["Tools","Gradle Plugin","Android Studio"],"sub_categories":["Gradle Plugin"],"readme":"# 🛑 THIS REPOSITORY IS OFFICIALLY NO LONGER UNDER MAINTENANCE since 10/02/2022 🛑\n\n# 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-oss/maven/bintray-release/images/download.svg) ](https://bintray.com/novoda-oss/maven/bintray-release/_latestVersion) [![](https://raw.githubusercontent.com/novoda/novoda/master/assets/btn_apache_lisence.png)](LICENSE.txt)\n\nSuper duper easy way to release your Android and other artifacts to bintray.\n\n\n## Description\n\nThis is a helper for releasing libraries to bintray. It is intended to help configuring stuff related to maven and bintray.\nAt the moment it works with Android Library projects, plain Java and plain Groovy projects, but our focus is to mainly support Android projects.\n\n## Adding to project\n\nTo publish a library to bintray using this plugin, add these dependencies to the `build.gradle` of the module that will be published:\n\n```groovy\napply plugin: 'com.novoda.bintray-release' // must be applied after your artifact generating plugin (eg. java / com.android.library)\n\nbuildscript {\n    repositories {\n        jcenter()\n    }\n    dependencies {\n        classpath 'com.novoda:bintray-release:\u003clatest-version\u003e'\n    }\n}\n```\n\n## Simple usage\n\nUse the `publish` closure to set the info of your package:\n\n```groovy\npublish {\n    userOrg = 'novoda'\n    groupId = 'com.novoda'\n    artifactId = 'bintray-release'\n    publishVersion = '0.6.1'\n    desc = 'Oh hi, this is a nice description for a project, right?'\n    website = 'https://github.com/novoda/bintray-release'\n}\n```\n\nIf you use [Kotlin DSL](https://github.com/gradle/kotlin-dsl) use:\n\n```kotlin\nimport com.novoda.gradle.release.PublishExtension\n\nconfigure\u003cPublishExtension\u003e {\n  userOrg = \"novoda\"\n  groupId = \"com.novoda\"\n  artifactId = \"bintray-release\"\n  publishVersion = \"0.6.1\"\n  desc = \"Oh hi, this is a nice description for a project, right?\"\n  website = \"https://github.com/novoda/bintray-release\"\n}\n```\n\nFinally, use the task `bintrayUpload` to publish (make sure you build the project first!):\n\n```bash\n$ ./gradlew clean build bintrayUpload -PbintrayUser=BINTRAY_USERNAME -PbintrayKey=BINTRAY_KEY -PdryRun=false\n```\n\nMore info on the available properties and other usages in the [Github Wiki](https://github.com/novoda/bintray-release/wiki).\n\n## Gradle compatibility\n\nThe plugin officially supports only Gradle 4.0+\n\n## Snapshots\n[![CI status](https://ci.novoda.com/buildStatus/icon?job=bintray-release-snapshot)](https://ci.novoda.com/job/bintray-release-snapshot/lastBuild/console) [![Download from Bintray](https://api.bintray.com/packages/novoda-oss/snapshots/bintray-release/images/download.svg)](https://bintray.com/novoda-oss/snapshots/bintray-release/_latestVersion)\n\nSnapshot builds from [`develop`](https://github.com/novoda/bintray-release/compare/master...develop) are automatically deployed to a [repository](https://bintray.com/novoda-oss/snapshots/bintray-release/_latestVersion) that is **not** synced with JCenter.\nTo consume a snapshot build add an additional maven repo as follows:\n```\nrepositories {\n    maven {\n        url 'https://dl.bintray.com/novoda-oss/snapshots/'\n    }\n}\n```\n\nYou can find the latest snapshot version following this [link](https://bintray.com/novoda-oss/snapshots/bintray-release/_latestVersion).\n\n## Links\n\nHere are a list of useful links:\n\n * We always welcome people to contribute new features or bug fixes, [here is how](https://github.com/novoda/novoda/blob/master/CONTRIBUTING.md)\n * 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\n * For further usage or to delve more deeply checkout the [Project Wiki](https://github.com/novoda/bintray-release/wiki)\n * 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  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnovoda%2Fbintray-release","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnovoda%2Fbintray-release","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnovoda%2Fbintray-release/lists"}