我刚刚追查了一个由不良财产价值引起的困难的maven问题。
该属性是备用JVM的路径,该JVM在测试时用于运行时。 我想通过检测路径是否有效来使maven早期失败。 什么可能是一种方法来实现这一目标?
我打算深入了解antrun以确定是否有办法让它先运行以便它可以检查,但这看起来有点矫枉过正。
问题:如何干净简单地完成这项工作?
答案 0 :(得分:4)
您可以使用Enforcer Maven Plugin及其Require Property规则,您可以强制执行某个属性的存在,也可以选择使用某个值(匹配的正则表达式),否则将失败。< / p>
此规则可以强制设置声明的属性,并可选择根据正则表达式对其进行评估。
一个简单的代码片段是:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.4.1</version>
<executions>
<execution>
<id>enforce-property</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireProperty>
<property>basedir</property>
<message>You must set a basedir property!</message>
<regex>.*\d.*</regex>
<regexMessage>The basedir property must contain at least one digit.</regexMessage>
</requireProperty>
</rules>
<fail>true</fail>
</configuration>
</execution>
</executions>
</plugin>
答案 1 :(得分:4)
是的,您可以使用maven-enforcer-plugin
执行此任务。此插件用于在构建期间强制执行规则,并且它具有内置的requireFilesExist
规则:
此规则检查指定的文件列表是否存在。
以下配置将强制文件${project.build.outputDirectory}/foo.txt
存在,如果不存在则将失败。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.4.1</version>
<executions>
<execution>
<id>enforce-files-exist</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireFilesExist>
<files>
<file>${project.build.outputDirectory}/foo.txt</file>
</files>
</requireFilesExist>
</rules>
<fail>true</fail>
</configuration>
</execution>
</executions>
</plugin>
答案 2 :(得分:1)
使用Maven Enforcer插件的Require Files Exist规则。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.4.1</version>
<executions>
<execution>
<id>enforce-files-exist</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireFilesExist>
<files>
<file>${property.to.check}</file>
</files>
</requireFilesExist>
</rules>
<fail>true</fail>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>