mvn
如果某些正则表达式与 src 代码匹配,那么最简单的方法是使构建失败?
我找到的最佳解决方案(hacky)是使用maven-replacer-plugin并使用正则表达式将代码替换为会导致编译失败的代码。
mvn
如果某些正则表达式与 src 代码匹配,那么最简单的方法是使构建失败?
我找到的最佳解决方案(hacky)是使用maven-replacer-plugin并使用正则表达式将代码替换为会导致编译失败的代码。
假设您在 maven 中运行测试,那么项目主目录将是工作目录,因此要获取 src 目录:
new File(System.getProperty("user.dir") + "/src");
然后递归查找该目录下的所有 .java 文件并应用正则表达式。
我最终使用了Maven Checkstyle Plugin。
在我的 pom 中,我有:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.10</version>
<executions>
<execution>
<phase>process-sources</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<configLocation>checkstyle.xml</configLocation>
<failsOnError>true</failsOnError>
<consoleOutput>true</consoleOutput>
</configuration>
</plugin>
...
具有以下checkstyle.xml
内容:
<module name="Checker">
<module name="TreeWalker">
<module name="RegexpSinglelineJava">
<property name="format" value="myRegex"/>
<property name="ignoreComments" value="true"/>
<property name="severity" value="error"/>
<property name="message" value="bla bla bla"/>
</module>
</module>
</module>