Nexus: 远程仓库
Maven: 构建、依赖管理工具
二者区别见 http://blog.csdn.net/liusong0605/article/details/25654811
1 安装nexus
根据平台,下载nexus,并安装。
下载 Nexus Repository Manager
解压apache-maven-x.x.x-bin.zip
,如图:
进入目录,执行 ./nexus start
,你将会看到:
yanjiaqideMacBook-Pro:bin Huai$ Starting nexus
打开 http://localhost:8081/, 如果进入如下界面,那么我们已经成功安装了Nexus,接下来就是创建 repository了。
image.png2 创建仓库
- 右上角登录 - 默认账户为 admin(account) / admin123(password)
- 点击Repository进入仓库主页,如下:
- 点击
Create repository
创建仓库maven2(hosted),如下红圈标注的为修改项,至于其他的maven2仓库类型(proxy, virtual, group),可以看http://blog.csdn.net/l2show/article/details/48653949。
经过以上步骤,我们的仓库就创建完了:
image.png3 Android Studio创建待上传Module
image.pnguploadArchives {
repositories.mavenDeployer {
repository(url: 'http://xxxx/xx/地址在上一步中可以获得') {
authentication(userName: 'admin', password: 'admin123')
}
pom.project {
version '1.0.0'
artifactId 'xx'
groupId 'xx.xx.xx'
}
}
}
执行 ./gradlew uploadArchives
, 顺利的话,就上传成功了。如果出现401错误,也就是校验失败,有可能是写错了account || password,报错405,可能是写错了仓库url,或者仓库建立的有问题(之前我建立的proxy仓库,远程url有问题就无法上传)以下即为上传完成的库。
4 应用
- 在项目根目录的build.gradle中,加入如下代码
allprojects {
repositories {
...
maven { url 'http://xxx/xxx/这里是上传时的仓库地址' }
}
dependencies{
repositories {
}
}
}
- 之后在使用module的build.gradle加入如下代码:
dependencies {
...
compile 'com.abf.huai.view:scrolltabbar:1.0.0' // groupId:artifactId:version
}
- 大功告成,你可以使用库中的类了~
网友评论