maven 打包 deploy 项目时 出现 401 Unauthorized - 大姚666 - 博客园
对这个问题的解决方法 在maven 插件中的 setting.xml 需要配置服务的授权信息
<server>
<id>releases</id>
<username>admin</username>
<password>admin123</password>
</server>
<server>
<id>snapshots</id>
<username>admin</username>
<password>admin123</password>
</server>
</servers>
然后再项目的Pom文件需要配置自己的私服仓库地址
<!-- 远程nexus仓库 -->
<distributionManagement>
<repository>
<id>release</id>
<name>Nexus Release Repository</name>
<url>http://xxxx/nexus/content/repositories/releases</url>
</repository><snapshotRepository>
<id>snapshots</id>
<name>Nexus Release Repository</name>
<url>http://xxxx/nexus/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>文章来源:https://www.toymoban.com/news/detail-620068.html
注意:setting中的 Servers中的ID 要欲 pom文件中的 repository的ID 必须一致文章来源地址https://www.toymoban.com/news/detail-620068.html
到了这里,关于maven 打包 deploy 项目时 出现 401 Unauthorized的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!