首先新建一个Github仓库,然后可以看到这里有个releases,如下点击
然后点击这个Draft a new release
按钮,如下
填写Tag版本号,标题,说明,也可以上传附加文件,点击Publish releasse
按钮即发布了,如下
这个时候在 https://jitpack.io/xbdcc/cutils 上便可以搜到自己发布的版本
搭建自己的本地私服Sonatype Nexus
,配置好环境变量后执行
浏览器打开http://localhost:8081
按操作一步步来写,然后上传gradle代码块例子如下:
apply plugin: 'maven'
uploadArchives {
repositories.mavenDeployer {
// url为仓库路径,改为对应本地or其他路径,userName和password分别为Sonatype的用户名和密码
repository(url: "http://localhost:8081/repository/maven-releases/") {
authentication(userName: "caochang", password: "xbd")
}
snapshotRepository(url: "http://localhost:8081/repository/maven-snapshots/") {
authentication(userName: "caochang", password: "xbd")
}
// 唯一标识
pom.groupId = "com.carlos.cutils"
// 项目名称
pom.artifactId = "cutils"
// 版本号,若为SNAPSHOT版本则需要在后面加-SNAPSHOT
pom.version = "0.1-SNAPSHOT"
}
}
classpath 'com.novoda:bintray-release:<latest-version>'
在library的build.gradle添加
配置如下:
apply plugin: 'com.novoda.bintray-release'
publish {
userOrg = 'xbdcc'
groupId = 'com.github.xbdcc'
artifactId = 'cutils'
publishVersion = '0.0.1'
desc = 'An android tool library.'
website = 'https://github.com/xbdcc/CUtils'
}
./gradlew clean build bintrayUpload -PbintrayUser=BINTRAY_USERNAME(替换为自己的bintray账号) -PbintrayKey=BINTRAY_KEY(替换为自己的bintray key) -PdryRun=false
也可以通过点击AS工作区右边Gradle的bintrayUpload来上传
// 方式一
maven { url 'https://jitpack.io' }
// 方式二
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
maven { url 'http://localhost:8081/repository/maven-releases/' }
// 方式三
maven { url 'https://dl.bintray.com/xbdcc/maven' }
implementation 'com.carlos.cutils:cutils:0.0.25'