美文网首页springmvc
maven settings.xml 配置文件

maven settings.xml 配置文件

作者: 大前端圈 | 来源:发表于2018-12-09 01:23 被阅读0次

这是maven 自定义仓库配置方案。本地仓库默认放在C盘,如果要想将本地仓库转移到指定到自动以的位置,就需要配置setting.xml,下载后只需修改本地仓库的配置即可!

maven的setting.xml文件如下:

<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" 
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  <!-- localRepository
   | The path to the local repository maven will use to store artifacts.
   |
   | Default: ${user.home}/.m2/repository
  <localRepository>/path/to/local/repo</localRepository>
  -->
  <localRepository>/Users/wangkang/.m2/repository</localRepository>
  
  
  <pluginGroups>
    <!-- pluginGroup
     | Specifies a further group identifier to use for plugin lookup.
    <pluginGroup>com.your.plugins</pluginGroup>
    -->
  </pluginGroups>

  
  <proxies>
    
  </proxies>

  
  <servers>
    
  </servers>

  
  <mirrors>
    <!-- mirror
     | Specifies a repository mirror site to use instead of a given repository. The repository that
     | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
     | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
     |-->
    <mirror>
        <id>alimaven</id>
        <mirrorOf>central</mirrorOf>
        <name>aliyun maven</name>
      <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
    </mirror>
     
  </mirrors>
  
  
  <profiles>
    
    <profile>
    

      <repositories>
        <repository>
          <id>nexus</id>
          <name>local private nexus</name>
          <url>http://maven.oschina.net/content/groups/public/</url>
          <releases>
      <enabled>true</enabled>
      </releases>
          <snapshots>
      <enabled>false</enabled>
      </snapshots>
        </repository>
      </repositories>
    <pluginRepositories>
    <pluginRepository>
      <id>nexus</id>
          <name>local private nexus</name>
          <url>http://maven.oschina.net/content/groups/public/</url>
          <releases>
      <enabled>true</enabled>
      </releases>
          <snapshots>
      <enabled>false</enabled>
      </snapshots>
    </pluginRepository>
    </pluginRepositories>
    </profile>
    

  </profiles>

  <!-- activeProfiles
   | List of profiles that are active for all builds.
   |
  <activeProfiles>
    <activeProfile>alwaysActiveProfile</activeProfile>
    <activeProfile>anotherAlwaysActiveProfile</activeProfile>
  </activeProfiles>
  -->
</settings>

一,把localRepository 设置为你自己的本地仓库地址:


image.png

二,把mirror设置为阿里的maven地址,这样下载jar包速度快

image.png

相关文章

网友评论

    本文标题:maven settings.xml 配置文件

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