Evil Mouth's Blog

上传项目到jitpack

May 08, 2017

需要发布个人仓库方便其他项目使用,最容易的方法估计也就是jitpack

jitpack官网其实就有教程https://jitpack.io/docs/ANDROID/

添加 maven 插件

在根build.gradle配置插件

buildscript {
  dependencies {
    classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' // Add this line

配置 library

librarybuild.gradle添加

apply plugin: 'com.github.dcendents.android-maven'

 group='com.github.YourUsername'

创建一个 release

为你的Github仓库创建一个release 1 2 3

拉依赖

allprojects {
 repositories {
    jcenter()
    maven { url "https://jitpack.io" }
 }
}

最后

dependencies {
    compile 'com.github.YourUsername:YourProjectName:YourProjectVersion'
}

— Evil Mouth