docker 安装 nexus
1.拉取镜像
docker pull sonatype/nexus3
2.运行容器
docker run -d -p 8081:8081 -p 8082:8082 --name nexus --restart=always -v /opt/docker-nexus/data:/var/nexus-data sonatype/nexus3
3.查看默认密码
进入容器
docker exec -it name bash
cat /nexus-data/admin.password
阿里云提供免费仓库
[INFO] 阿里云Maven中央仓库为阿里云云效提供的公共代理仓库,云效也提供了免费、可靠的Maven私有仓库Packages,欢迎您体验使用。www.aliyun.com/product/yun…
推送命令
mvn clean install org.apache.maven.plugins:maven-deploy-plugin:2.8:deploy -DskipTests
本地配置nexus仓库
1.启动好nexus仓库后
2.需要推的包的pom文件配置
这个是放项目里的pom文件(也可以配置在本地setting文件里),那个项目需要deploy就用这个配置,当然前提是本地maven的setting文件也必须要配置账号密码
<distributionManagement>
<repository>
<id>admin</id><!--账号-->
<name>maven-releases</name>
<url>http://ip:8081/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>admin</id>
<name>maven-snapshots</name>
<url>http://ip:8081/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
3.本地maven setting文件配置账号密码
<servers>
<!-- Maven私服配置 -->
<server>
<id>admin</id> <!-- id 也是用户名 -->
<username>admin</username> <!-- 用户名-->
<password>xxx</password> <!-- 密码-->
</server>
</servers>
4.推送到私服仓库
- install: 是把jar推送到本地的maven仓库
- deploy:是把jar推送到你配置的远端仓库
5.本地maven setting文件 配置私服仓库,拉取依赖
<profiles>
<profile>
<!-- maven私服 -->
<id>maven-nexus</id>
<repositories>
<repository>
<id>admin</id>
<name>admin</name>
<url>http://ip:8081/repository/maven-public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>admin</id>
<name>admin</name>
<url>http://ip:8081/repository/maven-public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<!-- activeProfile的属性值就是上面profiles列表种profile的id,若不存在则忽视 -->
<activeProfile>maven-nexus</activeProfile>
<!-- <activeProfile>rdc</activeProfile> -->
</activeProfiles>
遇到的问题
jar不能重复deploy,解决办法很简单,把仓库设置为允许重复deploy就行了
遗留问题
- 仓库下载可以配置多个,第一个地址下载不到就会去第二个地址下载,目前看就是写的顺序,在前面的配置先下载,都下载不到才会报错,暂时没问题
- 仓库deploy好像不能同时deploy两个地址,只会选取一个,可以根据来指定,但是两个都填进去的话也只会默认选一个,目前看是优先选私服,其次选阿里云的nexus,有点奇怪,不过影响不大
<activeProfiles>
<!-- activeProfile的属性值就是上面profiles列表种profile的id,若不存在则忽视 -->
<activeProfile>maven-nexus</activeProfile>
<!-- 两个都有的情况下默认会选soon-nexus 而不是aliyun-nexus -->
<activeProfile>aliyun-nexus</activeProfile>
<activeProfile>soon-nexus</activeProfile>
</activeProfiles>
好文推荐
© 版权声明
文章版权归作者所有,未经允许请勿转载,侵权请联系 admin@trc20.tw 删除。
THE END