作者: 菜刀文
Demo:https://github.com/helen-x/JitPackReleaseDemo
解释:
1.在项目的build.gradle的buildscript添加jitpack编译插件
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.3'
//添加jitpack依赖
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
}
}
2.在library的build.gradle中添加jitpack配置信息
//启用Jitpack 插件
apply plugin: 'com.github.dcendents.android-maven'
//设置Jitpack发布的Group
//我的github账号是helen-x, 对应我的group就是com.github.helen-x
group='com.github.helen-x'
步骤2: Github上发布代码
1.上面代码发布到Github
2.发布代码(Release/TAG)
找到对应项目,进入release页面
进入release以后,进行代码发布.
发布的时候可以用Releases也可以用Tags.
填写发布信息后,就可以发布了
步骤3: Jitpack发布
进入Jitpack link.
1.填写仓库名称
2.搜索
3.使用"Get", 发布就成功啦~~
发布成功后,会列出仓库的地址信息, 别人利用这个坐标就可以用我们的开源库啦.
比如,我的demo发布后的地址是: com.github.helen-x:JitpackReleaseDemo:0.1
步骤4: 使用我们的开源库
1.在build.gradle中加入Jitpack仓库
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
2.使用我们开源库
dependencies {
compile 'com.github.helen-x:JitpackReleaseDemo:0.1'
}
拓展
可以在仓库的readme.md中加入
[![](https://jitpack.io/v/helen-x/JitpackReleaseDemo.svg)](https://jitpack.io/#helen-x/JitpackReleaseDemo)
就会自动会有一个Jitpack的bar,效果如下,瞬间显得很高端有木有~
网友评论