maven更新失败问题解决
程序员文章站
2022-05-03 12:00:44
...
Maven无法更新私服jar包问题
在通过maven setting文件配置私服信息
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<localRepository>D:\maven_repository</localRepository>
<pluginGroups></pluginGroups>
<proxies></proxies>
<servers>
<server>
<id>maven-releases</id>
<username>xxx</username>
<password>xxx</password>
</server>
<server>
<id>maven-snapshots</id>
<username>xxx</username>
<password>xxx</password>
</server>
</servers>
<mirrors>
<mirror>
<id>nexus</id>
<mirrorOf>*</mirrorOf>
<name>nexus</name>
<url>http://xx.xx.xx.xx:xxxx/repository/maven-public/</url>
</mirror>
</mirrors>
<profiles></profiles>
</settings>
再该处配置完后仍然访问不到,则可以在引用的pom文件加入如下配置:
<repositories>
<repository>
<id>Snapshots</id>
<url>http://xx.xx.xx.xx:xxxx/repository/maven-public/</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
推荐阅读
-
Android SDK Manager更新、下载速度慢问题解决办法
-
更新android SDK 失败的解决方法
-
IE8安装失败 提示因为其他程序或更新正在等待重新计算机怎么办?
-
安卓模拟器猩猩助手安装失败以及常见问题解决方案
-
超级兔子安装失败检测新版本失败等问题解决方法
-
Win8.1系统电脑安装补丁失败提示此更新不适合计算机的解决方法图文教程
-
Win10一周年更新14393.693累积更新补丁KB3213986更新失败的解决方法
-
Chrome更新失败出现错误代码:0x00000000的解决方法
-
火狐浏览器更新失败,提示请检查系统中有无其他firefox进程的解决办法
-
docker中mysql初始化及启动失败问题解决方案