账号准备:
1.前往bintray注册个人账号https://bintray.com/signup/oss
2.登录bintray后查看apikey
右上角你的头像->Edit Profile->API Key
3.回到个人主页 点击 Add New Repository
4.设置库名称、类型、Licenses、描述信息: 库的名称后面会用到
项目配置
1.创建lib module(假设project名为lib,module名为adb-wifi)
项目结构图:
[图片上传失败...(image-c1d717-1510109980043)]
2.在product的build.gradle中添加
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
添加后我的内容如下:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
}
}
allprojects {
repositories {
jcenter()
}
}
3.module 的build.gradle中添加如下代码
android {
lintOptions {
checkReleaseBuilds false
abortOnError false
}
}
4.module目录下添加bintray.gradle文件,并写入以下内容
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'
group = PROJ_GROUP
version = PROJ_VERSION
install {
repositories.mavenInstaller {
// 生成pom.xml和参数
pom {
project {
packaging 'aar'
name PROJ_NAME
description PROJ_DESCRIPTION
url PROJ_WEBSITEURL
licenses {
license {
name LICENSE_NAME
url LICENSE_URL
}
}
developers {
developer {
id DEVELOPER_ID
name DEVELOPER_NAME
email DEVELOPER_EMAIL
}
}
scm {
connection PROJ_VCSURL
developerConnection PROJ_VCSURL
url PROJ_WEBSITEURL
}
}
}
}
}
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
bintray {
user = properties.getProperty("bintray.username")
key = properties.getProperty("bintray.apikey")
configurations = ['archives']
pkg {
// 这里的repo值必须要和你创建Maven仓库的时候的名字一样
repo = PROJ_NAME
// 发布到 JCenter 上的项目名字
name = PROJ_ARTIFACTID
desc = PROJ_DESCRIPTION
websiteUrl = PROJ_WEBSITEURL
issueTrackerUrl = PROJ_ISSUETRACKERURL
vcsUrl = PROJ_VCSURL
licenses = ["Apache-2.0"]
publicDownloadNumbers = true
}
}
task sourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
classifier = 'sources'
}
task javadoc(type: Javadoc) {
options.encoding "UTF-8"
options.charSet 'UTF-8'
source = android.sourceSets.main.java.srcDirs
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
failOnError false // 忽略注释语法错误,如果用jdk1.8你的注释写的不规范就编译不过
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives javadocJar
archives sourcesJar
}
5.module目录下添加gradle.properties文件,并写入以下内容
PROJ_GROUP=top.carlwu.lib
PROJ_VERSION=1.0.0
PROJ_NAME=lib
PROJ_WEBSITEURL=https://gitee.com/youjin_wu/adb-wifi
PROJ_ISSUETRACKERURL=https://gitee.com/youjin_wu/adb-wifi/issues
PROJ_VCSURL=https://gitee.com/youjin_wu/adb-wifi.git
PROJ_DESCRIPTION=A Test Lib
PROJ_ARTIFACTID=adb-wifi
LICENSE_NAME='The Apache Software License, Version 2.0'
LICENSE_URL='http://www.apache.org/licenses/LICENSE-2.0.txt'
DEVELOPER_ID=youjin_wu
DEVELOPER_NAME=youjin_wu
DEVELOPER_EMAIL=youjin.wu@qq.com
这里对上述字段做出说明
PROJ_GROUP 为你上传的构件的Group,如compile 'com.android.support:appcompat-v7:22.2.0'中的com.android.support
PROJ_VERSION 为你此次上传构件的版本号,如compile 'com.android.support:appcompat-v7:22.2.0'中的22.2.0,以后更新构件重新上传的时候只需要修改这里就好。
PROJ_NAME 为上传到你bintray的maven仓库的仓库名,即他会在你的maven仓库中新建一个子仓库。
PROJ_WEBSITEURL 为你的工程网站的url,一般为你的Github项目地址,如https://github.com/ls1110924/LightUtils
PROJ_ISSUETRACKERURL 为你的工程issue的url,一般为https://github.com/ls1110924/LightUtils/issues
PROJ_VCSURL 为你的项目版本控制系统的url,一般为https://github.com/ls1110924/LightUtils.git,切不可忘记最后面的.git
PROJ_DESCRIPTION 为你的项目描述,大家随意填写
PROJ_ARTIFACTID 为你的构件ID,如如compile 'com.android.support:appcompat-v7:22.2.0'中的appcompat-v7
LICENSE_NAME和LICENSE_URL保持不变即可
DEVELOPER_ID为开发者ID,大家随意填写
DEVELOPER_NAME为开发者姓名,随意填写
DEVELOPER_EMAIL为开发者邮箱,最后填写正确的邮箱,什么邮箱都可以
6.在工程根目录添加local.properties文件,并写入以下内容
bintray.username= your name
bintray.apikey= your apikey
这里填写你在bintray上注册得到的相关信息。
7.在module的build.gradle的末尾添加如下代码引用刚刚写的bintray.gradle文件
apply from: 'bintray.gradle'
最后我的文件内容为
apply plugin: 'com.android.library'
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
minSdkVersion 9
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}
apply from: 'bintray.gradle'
8.在当前工程的Terminal窗口下执行两个命令
gradle install
gradlew bintrayUpload