美文网首页
maven的pom文件中repository标签无效

maven的pom文件中repository标签无效

作者: 大黄想去看极光 | 来源:发表于2019-04-17 14:01 被阅读0次

原因是因为我在maven的setting的配置文件中配置了mirror标签

<mirror>    
           <id>nexus-aliyun</id>  
            <mirrorOf>*,!jeecg</mirrorOf>          
           <name>Nexus aliyun</name>    
           <url>https://maven.aliyun.com/nexus/content/groups/public</url>    
        </mirror>

之前的mirrorOf标签中只有*,现在加上!jeedg,这样pom文件中的repository标签中的仓库就能用了

相关文章

网友评论

      本文标题:maven的pom文件中repository标签无效

      本文链接:https://www.haomeiwen.com/subject/ezxnwqtx.html