0

如何配置 Maven SCM 插件以在 scm 结帐期间忽略错误?(诸如“权限被拒绝”或其他错误)。我知道<failOnError>false</failOnError>其他插件中的配置属性,但是这个插件没有这样的选项(或者我没有在文档中找到它)。

这是我的 pom.xml 部分:

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>1.9.5</version>
<executions>
    <execution>
        <phase>validate</phase>
        <goals>
            <goal>checkout</goal>
        </goals>
    </execution>
</executions>
<configuration>
    <failOnError>false</failOnError> <!-- It does not work! :( -->
</configuration>

4

0 回答 0