HBASE-6138 Addendum, the filter file location can be more general (Jesse Yates)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1345722 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
51d2dd1490
commit
181d2ea889
19
pom.xml
19
pom.xml
|
@ -481,9 +481,9 @@
|
||||||
<artifactId>findbugs-maven-plugin</artifactId>
|
<artifactId>findbugs-maven-plugin</artifactId>
|
||||||
<version>${findbugs.version}</version>
|
<version>${findbugs.version}</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
|
<excludeFilterFile>${project.basedir}/../dev-support/findbugs-exclude.xml</excludeFilterFile>
|
||||||
<findbugsXmlOutput>true</findbugsXmlOutput>
|
<findbugsXmlOutput>true</findbugsXmlOutput>
|
||||||
<xmlOutput>true</xmlOutput>
|
<xmlOutput>true</xmlOutput>
|
||||||
<excludeFilterFile>${parent.basedir}/../dev-support/findbugs-exclude.xml</excludeFilterFile>
|
|
||||||
<effort>Max</effort>
|
<effort>Max</effort>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
@ -630,6 +630,23 @@
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<!-- Special configuration for findbugs just in the parent so
|
||||||
|
the filter file location can be more general (see definition in pluginManagement) -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>findbugs-maven-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<inherited>false</inherited>
|
||||||
|
<goals>
|
||||||
|
<goal>findbugs</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<excludeFilterFile>${project.basedir}/dev-support/findbugs-exclude.xml</excludeFilterFile>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
<!-- Ignore running the assembly in the top-level.
|
<!-- Ignore running the assembly in the top-level.
|
||||||
That's all handled by hbase-assembly -->
|
That's all handled by hbase-assembly -->
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|
Loading…
Reference in New Issue