maven 不能使用 snapshot 的解决方式

www.cnblogs.com/2005wind/p/…
html

最近项目须要用到snapshot的包来进行构建过程,可是怎么都下不了构建的snapshot包。查询了相关资料,发现网上的资料不全,特总结下:bash

我使用的是nexus来做为代理中央库proxy。maven

检查步骤以下:ui

1.检查nexus是否归入public版本中:url

2.配置中是否启用snapshots功能。spa

一种是在项目pom.xml使用:代理

复制代码
<repositories>
    <repository>
        <id>test-nexus</id>
        <name>test</name>
        <url>http://192.168.1.253/nexus/content/groups/public/</url>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>
</repositories>复制代码
复制代码

另一种是直接在maven的settings.xml中体现:code

复制代码
<profile>    
<id>nexus</id>
<repositories>
<repository>
<id>central</id>
<name>Nexus</name>
<url>http://192.168.1.253/nexus/content/groups/public/</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<name>Nexus</name>
<url>http://192.168.1.253/nexus/content/groups/public/</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled> </snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
  </profiles>
  <activeProfiles>
    <activeProfile>nexus</activeProfile>
  </activeProfiles>  复制代码
复制代码
activeProfile   必定要加,否则配置不生效。能够查看配置是否生效:复制代码
mvn help:effective-pom复制代码
相关文章
相关标签/搜索