gpt4 book ai didi

maven - 当 Maven 配置文件不存在时如何失败?

转载 作者:行者123 更新时间:2023-12-03 17:30:47 25 4
gpt4 key购买 nike

我的 pom.xml 中有一些 maven 配置文件。我将 jenkins 配置为每晚对这些配置文件运行测试。

我今天发现我的 jenkins 配置中的一个配置文件名称存在拼写错误。事实证明,如果 maven 无法提交配置文件,它会运行默认配置文件。

如果配置文件不存在,有没有办法强制 maven 抛出错误?

最佳答案

Maven Enforcer 插件版本 3.0.0-M2 引入了一个内置检查 requireProfileIdsExist以此目的:

When running Maven with one or more unknown profile ids, Maven will give you a warning. This rule will actually break the build for that reason.

Here is how a project should be setup to use this rule

<project>
...
<build>
<plugins>
...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M2</version>
<executions>
<execution>
<id>enforce</id>
<configuration>
<rules>
<requireProfileIdsExist/>
</rules>
</configuration>
<goals>
<goal>enforce</goal>
</goals>
</execution>
</executions>
</plugin>
...
</plugins>
</build>
...
</project>

关于maven - 当 Maven 配置文件不存在时如何失败?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22820542/

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