使用文件模式管理library,顯得既低效又混亂磨取∪耸粒考慮使用gradle腳本打包librar之后,上傳本地maven庫獲得網(wǎng)絡(luò)庫忙厌,
網(wǎng)絡(luò)庫包括:
- jcenter遠(yuǎn)程倉庫(公共)凫岖,需要注冊。
- github搭建的遠(yuǎn)程倉庫(公共)
- nexus搭建的maven私服逢净。
執(zhí)行打包上傳aar的命令:
./gradlew -p PImagePicker(你的library的name) clean build uploadArchives -info
本地庫
首先確定我們新建的module
是Android library
,可以在module
的build.gradle
看到apply plugin: 'com.android.library'
新增如下
apply plugin: 'com.android.library'
apply plugin: 'maven'
新增打包腳本:
uploadArchives {
repositories {
mavenDeployer {
//本地maven
repository(url: 'file:///Users/cly/Documents/Android/repo/')
pom.project {
name '庫名,打包命令使用'
groupId 'com.hammer.anlib'
artifactId 'PImagePicker'
version '1.0.0'
packaging 'aar'
licenses {
license {
name 'The MIT License'
url 'https://raw.githubusercontent.com/hammercui/android-advance-cn/master/LICENSE'
distribution 'repo'
}
}
developers {
developer {
id 'hammercui'
name 'hammercui'
email 'hammercui@163.com'
}
}
}
}
}
}
然后執(zhí)行上文中提到的打包命令哥放,打包完成后我們就可以在Users/cly/Documents/Android/repo/
目錄看到com/hammercui/anlib/PImagePicker/1.0.0/
等文件,表示打包成功汹胃。
window下的問題
1 jvm設(shè)置問題
D:\androidProjects\androidLibrary>gradlew.bat -p PAndroidShare clean build uploadArchives -info
To honour the JVM settings for this build a new JVM will be forked. Please consider using the daemon: https://docs.gradle.org/2.14.1/userguide/gradle_daemon.html.
這種情況一般是org.gradle.jvmargs=-Xmx2048m
的配置問題婶芭,jvm內(nèi)存不足,因?yàn)間radle使用的groovy語言也是jvm虛擬機(jī)語言着饥。如果修改了最大內(nèi)存還不行,可能是jdk的版本問題惰赋,最好選用jdk8_64位宰掉。
如何引用?
在工程目錄的build.gradle新增maven路徑
maven{
url 'file:///Users/cly/Documents/Android/repo/'
}
然后在其他module直接引用依賴
//+號(hào)表示一直飲用最新版本
compile 'com.hammer.anlib:PImagePicker:+@aar'
網(wǎng)絡(luò)庫
我們使用nexus來配置maven庫
如何搭建
apt安裝jdk
sudo apt-get install software-properties-common
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
Oracle JDK 6(舊版本)
sudo apt-get install oracle-java6-installer
Oracle JDK 7(較新的穩(wěn)定版本)
sudo apt-get install oracle-java7-installer
Oracle JDK 8(最新預(yù)覽版本)
sudo apt-get install oracle-java8-installer安裝Nexus
使用wget命令下載 wget 想要下載nexus版本的地址
[root@localhost nexus]# wget https://sonatype-download.global.ssl.fastly.net/nexus/oss/nexus-2.11.2-03-bundle.tar.gz
[root@localhost nexus]# ls
nexus-2.11.2-03-bundle.tar.gz
解壓到/usr/local/nexus
目錄
[root@localhost nexus]# mkdir /usr/local/nexus
[root@localhost nexus]# tar -zxvf nexus-2.11.2-03-bundle.tar.gz -C /usr/local/nexus/
[root@localhost nexus]# cd /usr/local/nexus
[root@localhost nexus]# ls
編輯 Nexus 的 nexus.properties 文件,配置端口和 work 目錄信息(保留默認(rèn))
[root@localhost nexus]# cd nexus-2.11.2-03
[root@localhost nexus-2.11.2-03]# cd conf
[root@localhost conf]# vi nexus.properties
//默認(rèn)不做修改
編輯 nexus 腳本, 配置 RUN_AS_USER 參數(shù)
vim /usr/nexus/nexus-2.11.2-03/bin/nexus
NEXUS_HOME=".."
改為(不修改默認(rèn)也可以):
NEXUS_HOME="nexus安裝目錄" //比如/usr/local/nexus/nexus-2.11.2-03/
#RUN_AS_USER=
改為:
RUN_AS_USER=root
防火墻增加配置
-A INPUT -m state --state NEW -m tcp -p tcp --dport 8081 -j ACCEPT
啟動(dòng) nexus [nexus的bin目錄下的可以執(zhí)行文件可以進(jìn)入bin查看]
[root@localhost conf]# /usr/nexus/nexus-2.11.2-03/bin/nexus start
****************************************
WARNING - NOT RECOMMENDED TO RUN AS ROOT
****************************************
Starting Nexus OSS...
Started Nexus OSS.
如何上傳
網(wǎng)絡(luò)私有庫:我們一般使用nexus搭建私有倉庫。比如搭建的私有庫地址是:
http://maven.****.com/nexus/content/repositories/thirdparty
我們只需要在打包文件里替換下
//私有maven
repository(url: 'http://???'){
authentication(userName: '賬號(hào)', password:'密碼')
}
或者使用github提供的公共免費(fèi)maven庫赁濒,具體使用方法與私有類似轨奄。