All Projects → quangctkm9207 → multi-library-bintray

quangctkm9207 / multi-library-bintray

Licence: MIT license
A demo project to illustrate Bintray release configuration of a project which contains several modules.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to multi-library-bintray

bintray-upload-plugin
📦 Insanely easy way to upload your Android Library to Bintray/JCenter
Stars: ✭ 18 (-33.33%)
Mutual labels:  bintray, jcenter
bintray
简化发布Java/Android项目到Jcenter。
Stars: ✭ 38 (+40.74%)
Mutual labels:  bintray, jcenter
GradleMavenPush
Helper to upload Gradle Android Artifacts, Gradle Java Artifacts and Gradle Kotlin Artifacts to Maven repositories (JCenter, Maven Central, Corporate staging/snapshot servers and local Maven repositories).
Stars: ✭ 21 (-22.22%)
Mutual labels:  jcenter
Bintray Release
A helper for releasing from gradle up to bintray
Stars: ✭ 1,878 (+6855.56%)
Mutual labels:  bintray
setup-jfrog-cli
Set up JFrog CLI in your GitHub Actions workflow
Stars: ✭ 63 (+133.33%)
Mutual labels:  bintray
bintray-secure-ota
Over-The-Air firmware upgrades for the Internet of Things devices with JFrog @bintray
Stars: ✭ 37 (+37.04%)
Mutual labels:  bintray
CorePublish
maven发布插件和bintray发布插件
Stars: ✭ 18 (-33.33%)
Mutual labels:  bintray
backblaze-b2-java-api
Java API for the fabulous backblaze B2 API
Stars: ✭ 13 (-51.85%)
Mutual labels:  bintray
jcenter-config
Painlessly publish your library/project to jcenter() with these simple scripts.
Stars: ✭ 13 (-51.85%)
Mutual labels:  jcenter
recyclerfragment
An Android Fragment that displays a set of items in a RecyclerView.
Stars: ✭ 16 (-40.74%)
Mutual labels:  jcenter

DEPRECATED

Bintray just stopped accepting new packages from early 2021. Therefore, to host your Java/Library, you can use Maven Central (Sonatype) by following this post.

Multiple Library Bintray Release

A demo project which illustrates how to a distribute Java/Android multiple-module library on Bintray easily.

The steps are explained fully at my blog post.

Steps

  1. Copy jcenter folder and release-bintray.gradle file into your project
  2. Add the following line into each module's build.gradle file
// ...
apply from: rootProject.file('release-bintray.gradle')

For example, please check the module manga's gradle file in this project.

  1. Set your Bintray credentials
    You need to put your own Bintray account credentials inside local.properties file (which is not tracked by version control).
bintray.user=your_username
bintray.apikey=your_api_key (i.e: adfasdf342342j34lba84a25f8c3)
bintray.gpg.password=your_gpg_password
  1. In each module, update its Bintray information in gradle.properties For example, for module manga in this project.
POM_NAME=Manga
POM_DESCRIPTION=Define general mange character
POM_BINTRAY_NAME=com.quangnguyen.manga:manga
POM_ARTIFACT_ID=manga
POM_PACKAGING=jar
POM_VERSION=1.1.0
  1. Run script from command line
  • To publish all modules at the same time
./gradlew bintrayUpload
  • To publish a specific module separately
./gradlew *moduleName*:bintrayUpload

If you are interested in my useful blog posts and cool projects, you can subscribe to my newsletter by clicking the below link.
SUBSCRIBE TO USEFUL BLOG POSTS AND COOL PROJECTS.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].