gpt4 book ai didi

maven - 如何继续而不是在 Exec Maven 插件执行错误时失败?

转载 作者:行者123 更新时间:2023-12-05 02:02:49 25 4
gpt4 key购买 nike

尽管 Maven exec 插件添加的执行之一出错,如何使 Maven 构建继续?

https://www.mojohaus.org/exec-maven-plugin/usage.html

最佳答案

使用成功代码的示例解决方案:

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>docker-rmi</id>
<phase>clean</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>docker</executable>
<workingDirectory>${project.basedir}</workingDirectory>
<arguments>
<argument>rmi</argument>
<argument>${project.groupId}/${project.artifactId}:${project.version</argument>
</arguments>
<successCodes>
<successCode>0</successCode>
<successCode>1</successCode>
</successCodes>
</configuration>
</execution>
</executions>
</plugin>

关于maven - 如何继续而不是在 Exec Maven 插件执行错误时失败?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65608442/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com