maven(用戶配置篇)

  • maven環境配置
  • 在F:\maven(maven的安裝目錄下),新建一個本地倉庫(localRepository),例:
  • maven的用戶配置(maven安裝目錄下(F:\maven\apache-maven-3.5.4\conf)的配置,稱爲全局配置,用戶目錄(C:\Users\L\.m2)下的稱爲用戶配置,兩者同時存在,它們的內容將會被合併,以用戶目錄下的setting文件爲主):在用戶目錄的 .m2目錄下配置用戶的setting.xml文件,內容如下:

<?xmlversion="1.0" encoding="UTF-8"?>
<settings   xmlns="http://maven.apache.org/POM/4.0.0"    
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<!--配置maven本地倉庫路徑 -->
 <localRepository>F:\maven\localRepository</localRepository>
  <mirrors>
       <!-- 配置nexus倉庫鏡像-->
        <mirror> 
        <id>nexus</id> 
        <name>internal nexusrepository</name> 
       <url>http://maven.aliyun.com/nexus/content/groups/public/</url> 
       <mirrorOf>central</mirrorOf> 
</mirror>
  </mirrors>
  <profiles>
       <profile>
              <id>dev</id>
              <!-- 配置nexus倉庫-->
              <repositories>
                     <repository>
                     <id>local-nexus</id>
                     <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
                     <releases>
                            <enabled>true</enabled>
                     </releases>
                     <snapshots>
                            <enabled>true</enabled>
                     </snapshots>
                     </repository>
              </repositories>
       </profile>
  </profiles>
  <activeProfiles>
    <activeProfile>dev</activeProfile> 
  </activeProfiles>
</settings>

.m2文件夾的生成,請參考網上給出的:

mvn help:system

 

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章