maven配置多仓库

编程入门 行业动态 更新时间:2024-10-19 20:32:23

maven配置多<a href=https://www.elefans.com/category/jswz/34/1770040.html style=仓库"/>

maven配置多仓库

配置多仓库不要用mirror,要用profile。
先将mirror全注释掉。

<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns=".0.0"xmlns:xsi=""xsi:schemaLocation=".0.0 .0.0.xsd"><localRepository>D:\maven repository</localRepository><servers><server><id>releases</id><username>abc</username><password>abc123</password></server><server><id>snapshots</id><username>abc</username><password>abc123</password></server><server><id>gongsi</id><username>abc</username><password>abc123</password></server></servers><mirrors></mirrors><profiles><!-- 自己公司maven库 --><profile><id>gongsi</id><repositories><repository><id>gongsi</id><url>:8081/nexus/content/groups/public/</url><!-- 能下载正式版本 --><releases><enabled>true</enabled></releases><!-- 能下载快照版本 --><snapshots><enabled>true</enabled></snapshots></repository></repositories></profile><!-- repo1仓库 --><profile><id>repo1</id><repositories><repository><id>repo1</id><url>;/url><releases><enabled>true</enabled></releases><snapshots><enabled>true</enabled></snapshots></repository></repositories></profile><!-- 阿里云 --><profile><id>aliyun</id><repositories><repository><id>aliyun</id><url>;/url><releases><enabled>true</enabled></releases><snapshots><enabled>true</enabled><updatePolicy>always</updatePolicy></snapshots></repository></repositories></profile></profiles><!-- activeProfiles| List of profiles that are active for all builds.|<activeProfiles><activeProfile>alwaysActiveProfile</activeProfile><activeProfile>anotherAlwaysActiveProfile</activeProfile></activeProfiles>--><activeProfiles><activeProfile>gongsi</activeProfile><activeProfile>repo1</activeProfile><activeProfile>aliyun</activeProfile></activeProfiles>
</settings>
```

更多推荐

maven配置多仓库

本文发布于:2023-11-17 12:07:08,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1643181.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:仓库   maven

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!