上传项目到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
在library
的build.gradle
添加
apply plugin: 'com.github.dcendents.android-maven'
group='com.github.YourUsername'
创建一个 release
拉依赖
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
最后
dependencies {
compile 'com.github.YourUsername:YourProjectName:YourProjectVersion'
}
— Evil Mouth