开启禁止匿名用户访问私服后,从私服下载jar包的两种方式
①配置<server>和<profile>、<activeProfiles>
<server>
<id>nexus</id>
<username>访问的账号</username>
<password>访问的密码</password>
</server>
<!--配置私服下载jar包的模板 开始-->
<profile>
<!--profile的id-->
<id>dev</id>
<repositories>
<repository>
<!--仓库id,需要和server中的id一致,因为需要通过账号进行访问-->
<id>nexus</id>
<!--仓库地址,即nexus仓库组的地址-->
<url>http://localhost:8081/repository/maven-public/</url>
<!--是否下载releases构件-->
<releases>
<enabled>true</enabled>
</releases>
<!--是否下载snapshots构件-->
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<!-- 插件仓库,maven的运行依赖插件,也需要从私服下载插件 -->
<pluginRepository>
<id>public</id>
<name>maven-public</name>
<url>http://localhost:8081/repository/maven-public/</url>
</pluginRepository>
</pluginRepositories>
</profile>
<!--配置私服下载jar包的模板 结束-->
<!--激活下载模板->
<activeProfiles>
<activeProfile>dev</activeProfile>
</activeProfiles>
②https://blog.csdn.net/qq_43302195/article/details/128684987