android发布到nexus私服
为了减少编译时间,将项目中用到的library module做成maven类库,使之可以被其他项目引用
创建自己的组建项目
android的发布至私服的项目最好是有app宿主和一个XxxLib2个module项目构成。
app可用于测试XxxLib,为XxxLib建立各种功能的测试例子,方便后续人员参照。
建好之后将其上传到版本服务器,以做后期版本更新。
将XxxLib发布到私服
在gradle.properties文件中定义整个项目的配置信息
这里赘述一下gradle.properties是AndroidStudio自动创建用来设置项目属性的文件,对于有多个module的中大型项目,使用gradle.properties来统一各个module的配置将十分有利项目的维护。比如在gradle.properties中设置项目的版本,support版本和其他第三方库的版本,项目中一些属性的标志等等。gradle.properties内容参照
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40org.gradle.jvmargs=-Xmx4096M
# 编译sdk版本号
COMPILE_SDK_VERSION=25
# 编译工具版本号
BUILD_TOOLS_VERSION=25.0.0
# 最小sdk版本号
MIN_SDK_VERSION=17
# 运行sdk版本号
TARGET_SDK_VERSION=25
# support版本号
SUPPORT_VERSION=25.0.0
# app版本号
VERSION_CODE=20171012
# app版本名称
VERSION_NAME=1.0.0
# fresco 版本号
# FRESCO_VERSION=1.3.0
# glide 版本号
GLIDE_VERSION=4.0.0
# 是否混淆
MINIFY_ENABLE=true
# nexus config
NEXUS_PUBLIC_URL=http://10.10.10.33:8081/repository/maven-public/
NEXUS_RELEASE_URL=http://10.10.10.33:8081/repository/maven-releases/
NEXUS_NAME=admin
NEXUS_PASSWORD=admin123
# maven publish config
# 本次发布至私服的版本
RELEASE_VERSION=1.0.3
# 发布至私服的group标识
RELEASE_GROUP=com.xxx.android
# 发布至私服的类型
RELEASE_TYPE=aar每个library module的发布脚本都写在改module目录的maven.gradle文件中,该文件被build.gradle引用。
1 build.gradle引用maven.gradle代码
1
apply from: "maven.gradle"
2 maven.gradle内容参照
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56apply plugin: 'maven'
task androidJavadocs(type: Javadoc) {
source = android.sourceSets.main.java.srcDirs
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
}
task androidJavadocsJar(type: Jar, dependsOn: androidJavadocs) {
classifier = 'javadoc'
from androidJavadocs.destinationDir
}
task androidSourcesJar(type: Jar) {
classifier = 'sources'
from android.sourceSets.main.java.srcDirs
}
artifacts {
archives androidSourcesJar
// archives androidJavadocsJar
}
// 闭包进行配置
uploadArchives {
repositories {
mavenDeployer {
repository(url: "${NEXUS_RELEASE_URL}") {
authentication(userName: NEXUS_NAME, password: NEXUS_PASSWORD)
}
pom.project {
groupId = "${RELEASE_GROUP}"
artifactId = 'gallerylibrary'
version = "${RELEASE_VERSION}"
packaging "${RELEASE_TYPE}"
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id 'xxxxxx@xxx.com'
name 'xxxxxx'
email 'xxxxxx@xxx.com'
}
}
}// end pom.project
}// end maven deploy
}
}发布至maven命令
1
./gradlew upload
发布完可登录nexus服务器查看。
引用发布好的lib
需要在工程的build.gradle中加入maven私服的地址
1
2
3
4
5
6
7
8
9allprojects {
repositories {
jcenter()
mavenCentral()
maven{
url "${NEXUS_PUBLIC_URL}"
}
}
}在module的build.gradle直接引用
1
2// 引用格式为[groupId]:[artifactId]:[version]
compile "com.xxx.android:gallerylibrary:1.0.0"
注意事项
在gradle.properties不得设置proxy,否则无法引用私服。
引用私服编译通过后,会在本地仓库留缓存,如果不升级lib版本重新发布,本地是不会更新的,除非删除本地缓存。
2.1 MAC 缓存地址:
1 | /Users/用户名/.gradle/caches/modules-2/files-2.1 |
2.2 windows 缓存地址:
1 | C:\Users\用户名\.gradle\caches\modules-2\files-2.1 |
- 请统一遵守maven发布的命名规范,以使lib引用有章可循、方便简单。