mirror of https://github.com/apache/nifi.git
NIFI-587 moved checkstyle into profile with rat plugin. They were too unstable
This commit is contained in:
parent
37e5548ac1
commit
41b21af576
|
@ -259,14 +259,6 @@
|
|||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>check-style</id>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<checkstyleRules>
|
||||
<module name="Checker">
|
||||
|
@ -377,9 +369,15 @@
|
|||
</build>
|
||||
<profiles>
|
||||
<profile>
|
||||
<!-- Automatically check for licenses. Too slow to always run.
|
||||
Activate with -P check-licenses -->
|
||||
<id>check-licenses</id>
|
||||
<!--
|
||||
Checks style and licensing requirements. This is a good idea to
|
||||
run for contributions and for the release process. While it
|
||||
would be nice to run always these plugins can considerably slow
|
||||
the build and have proven to create unstable builds in our
|
||||
multi-module project and when building using multiple threads.
|
||||
The stability issues seen with Checkstyle in multi-module builds
|
||||
include false-positives and false negatives.-->
|
||||
<id>contrib-check</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
@ -394,6 +392,18 @@
|
|||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>check-style</id>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
|
Loading…
Reference in New Issue