nexus下载提示无权限

22 篇文章 0 订阅

报错信息

[ERROR] Failed to execute goal on project njc-user-service: Could not resolve dependencies for project com.njc:njc-user-service:jar:0.0.1-SNAPSHOT: Failed to collect dependencies at com.njc:security-starter:jar:0.0.3-Release: Failed to read artifact descriptor for com.njc:security-starter:jar:0.0.3-Release: Could not transfer artifact com.njc:security-starter:pom:0.0.3-Release from/to nexus (http://192.168.140.21:8081/repository/maven-public/): authentication failed for http://192.168.140.21:8081/repository/maven-public/com/njc/security-starter/0.0.3-Release/security-starter-0.0.3-Release.pom, status: 401 Unauthorized -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException

原因:401 Unauthorized,即下载包的时候无权限

解决方案:nexus 配置可匿名访问

在这里插入图片描述

或者在项目的pom文件配置加上权限

<distributionManagement>
    <repository>
        <id>maven-releases</id>
        <name>Nexus Release Repository</name>
        <url>http://******:8081/repository/maven-releases/</url>
    </repository>
    <snapshotRepository>
        <id>maven-snapshots</id>
        <name>Nexus Snapshot Repository</name>
        <url>http://*******:8081/repository/maven-snapshots/</url>
    </snapshotRepository>
</distributionManagement> 

repository 的 id 要和 maven settings 里 server 的 id 一样

 <server>  
    <id>maven-releases</id>  
    <username>admin</username>  
    <password>******</password>  
</server>
<server>  
    <id>maven-snapshots</id>  
    <username>admin</username>  
    <password>******</password>  
</server> 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值