Merge -r 1190139:1190140 from trunk to branch. FIXES: MAPREDUCE-3209
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1190676 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c624ed7dd3
commit
7362f67bcb
|
@ -26,7 +26,7 @@
|
|||
|
||||
<properties>
|
||||
<!-- Needed for generating FindBugs warnings using parent pom -->
|
||||
<mr.basedir>${project.parent.parent.basedir}</mr.basedir>
|
||||
<mr.basedir>${project.parent.basedir}/..</mr.basedir>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
<properties>
|
||||
<!-- Needed for generating FindBugs warnings using parent pom -->
|
||||
<mr.basedir>${project.parent.parent.basedir}</mr.basedir>
|
||||
<mr.basedir>${project.parent.basedir}/..</mr.basedir>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
|
||||
<properties>
|
||||
<!-- Needed for generating FindBugs warnings using parent pom -->
|
||||
<mr.basedir>../</mr.basedir>
|
||||
</properties>
|
||||
|
||||
|
||||
|
@ -258,7 +257,22 @@
|
|||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<configuration>
|
||||
<findbugsXmlOutput>true</findbugsXmlOutput>
|
||||
<xmlOutput>true</xmlOutput>
|
||||
<excludeFilterFile>${mr.basedir}/dev-support/findbugs-exclude.xml</excludeFilterFile>
|
||||
<effort>Max</effort>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<modules>
|
||||
<module>hadoop-mapreduce-client-core</module>
|
||||
<module>hadoop-mapreduce-client-common</module>
|
||||
|
|
Loading…
Reference in New Issue