maven settings配置

来源:互联网 发布:南北方饮食差异 知乎 编辑:程序博客网 时间:2024/06/11 07:28

settings.xml 放入.m2 文件夹下

<?xml version="1.0" encoding="UTF-8"?>
<settings>  
<profiles>  
  <profile>  
    <id>dev</id>  
    <repositories>  
      <repository>  
        <id>local-nexus</id>  
        <url>http://127.0.0.1:8080/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>


0 0
原创粉丝点击