<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 http://maven.apache.org/xsd/settings-1.2.0.xsd">
<localRepository>D:\Develop\.m2\repository</localRepository>
<mirrors>
<!-- 刪除mirrors裡的配置,改用profiles -->
</mirrors>
<profiles>
<!-- 多倉庫配置 -->
<!-- 阿里雲 -->
<profile>
<id>aliyun</id>
<repositories>
<repository>
<!-- 注意:repository的id不要重複,否則先解析的配置會被後解析的覆蓋 -->
<id>aliyun-public</id>
<url>https://maven.aliyun.com/repository/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
<!-- 公司內網 -->
<profile>
<id>nexus</id>
<repositories>
<repository>
<id>nexus-public</id>
<url>http://公司倉庫地址</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>nexus-central</id>
<url>http://公司倉庫地址</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
<!-- 需要預設啟用的遠端映象倉庫配置 -->
<activeProfiles>
<activeProfile>aliyun</activeProfile>
<activeProfile>nexus</activeProfile>
</activeProfiles>
</settings>
【Maven】配置多個倉庫(第三方和公司內部倉庫)
相關文章
- maven 多倉庫和映象設定Maven
- Maven 倉庫Maven
- 建立個人Maven倉庫Maven
- 多個倉庫源配置及repositories和mirrors的配置
- Maven 倉庫 mvnrepositoryMaven
- Maven私服倉庫配置-Nexus詳解!Maven
- 如何配置極狐GitLab Maven 倉庫GitlabMaven
- maven配置阿里雲及本地倉庫Maven阿里
- Artifactory中Maven倉庫配置最佳化——提升Virtual倉庫下載速度Maven
- IDEA如何配置自己的maven和maven設定阿里雲倉庫IdeaMaven阿里
- Maven 中央倉庫地址大全Maven
- Maven中央倉庫地址大全Maven
- Maven-修改maven本地倉庫地址Maven
- MAVEN新增本地倉庫和注意事項!Maven
- maven遠端倉庫配置及含義解釋Maven
- 配置多個 Git 賬號來管理遠端倉庫Git
- 《《《maven倉庫下載jar包MavenJAR
- Maven私有倉庫-Nexus3MavenS3
- 如何配置Yum倉庫?
- Maven推送本地jar包到遠端私有倉庫配置MavenJAR
- Java Maven專案推送到 Maven 中央倉庫JavaMaven
- maven的下載、安裝與配置 倉庫配置完整版Maven
- maven 將本地jar打入本地倉庫MavenJAR
- 新增jar包到本地Maven倉庫JARMaven
- Maven中央倉庫釋出歷程Maven
- 如何使用GitHub建立Maven私有倉庫GithubMaven
- maven中心倉庫OSSRH使用簡介Maven
- gite多個賬號 訪問倉庫Git
- maven高階21_將第三方jar安裝到本地倉庫和maven私服6MavenJAR
- yum配置及倉庫搭建
- git倉庫修改遠端倉庫Git
- github從一個倉庫切換到另一倉庫Github
- maven安裝jar包到本地倉庫MavenJAR
- 釋出jar包到maven中央倉庫JARMaven
- sbt更換阿里的maven倉庫源阿里Maven
- 使用Github搭建Maven私有遠端倉庫GithubMaven
- 處理Maven本地倉庫.lastUpdated檔案MavenAST
- 使用Gradle釋出工件到Maven倉庫GradleMaven