Painlessly publish your library/project to jcenter() with these simple scripts.
-
Copy/Add configs from the
deploy.properties
file to your local.properties file of your project, and change to your own settings (this is a config file) COPY HERE. You can find some examples/hints in the comments, but it's pretty straightforward. -
Add the following lines to your
.gitignore
to prevent exposing sensitive data to your repository# Local configuration file (sdk path, etc) local.properties
-
On your project (root)
build.gradle
add the following lines:buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.2.2' classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1' } } plugins { id "com.jfrog.bintray" version "1.7" } allprojects { repositories { jcenter() } }
-
On your library module's
build.gradle
add the following before theandroid{}
closure:apply plugin: 'com.android.library' apply plugin: 'com.github.dcendents.android-maven' apply plugin: 'com.jfrog.bintray' android { compileSdkVersion 25 buildToolsVersion "25.0.0" ... }
-
Finally at the end of the same library module
gradle.build
add:apply from: 'https://raw.githubusercontent.com/JoaquimLey/jcenter-config/master/deploy.gradle'
./gradlew clean libraryModuleName:bintrayUpload
Clean is optional but recommended.
Contributions are always welcome! Follow the "fork-and-pull" Git workflow.
Issues: It's encoraged to open a unreported issues.
- Fork the repo on GitHub
- Clone the project to your own machine
- Commit changes to your own branch
- Merge with current development branch
- Push your work back up to your fork
- Submit a Pull request your changes can be reviewed (please refere the issue if reported)
Prevent code-style related changes (at least run Ctrl+⌥+O, ⌥+⌘+L) before commiting.
##Questions
I'm writing a blog post about this process, incldugin a step-by-step guide. In the meantimefor some reason still unable to publish you can or if you have any questions or always find me on twitter.
You can also find the official example here.
Copyright © 2016 Joaquim Ley
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied.
See the License for the specific language governing permissions and
limitations under the License.