我在使用maven-dependecy-plugins复制目标进行打包之前将资源复制到另一个文件夹中。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>copy</id>
<phase>prepare-package</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<failBuild>false</failBuild>
<artifactItems>
<artifactItem>
<groupId>my.groupID</groupId>
<artifactId>myArtifact</artifactId>
<version>0.0.1-SNAPSHOT</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>my/custom/path</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
资源并不重要,很可能无法访问。这就是为什么我希望构建不会失败,如果它不可访问。我已经将failBuild属性设置为false但它没有任何效果。有没有办法实现这个目标?
答案 0 :(得分:1)
我猜你得到一个解决问题,即工件不存在或无法在任何存储库中找到。这就是maven的工作原理,如果你指定了一个依赖,你需要能够检索它。
答案 1 :(得分:0)
我现在使用jenkins的复制工件插件解决了我的问题。