You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ha...@apache.org on 2015/01/09 19:16:44 UTC

svn commit: r1650617 - /hive/trunk/pom.xml

Author: hashutosh
Date: Fri Jan  9 18:16:43 2015
New Revision: 1650617

URL: http://svn.apache.org/r1650617
Log:
HIVE-8327 : mvn site -Pfindbugs (Gopal V via Ashutosh Chauhan)

Modified:
    hive/trunk/pom.xml

Modified: hive/trunk/pom.xml
URL: http://svn.apache.org/viewvc/hive/trunk/pom.xml?rev=1650617&r1=1650616&r2=1650617&view=diff
==============================================================================
--- hive/trunk/pom.xml (original)
+++ hive/trunk/pom.xml Fri Jan  9 18:16:43 2015
@@ -1005,6 +1005,26 @@
         </plugins>
       </build>
     </profile>
+
+    <profile>
+    <id>findbugs</id>
+      <reporting>
+        <plugins>
+          <plugin>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>findbugs-maven-plugin</artifactId>
+            <version>3.0.0</version>
+            <configuration>
+              <fork>true</fork>
+              <maxHeap>2048</maxHeap>
+              <jvmArgs>-Djava.awt.headless=true -Xmx2048m -Xms512m</jvmArgs>
+              <excludeFilterFile>${project.parent.basedir}/findbugs/findbugs-exclude.xml</excludeFilterFile>
+            </configuration>
+          </plugin>
+        </plugins>
+      </reporting>
+    </profile>
+
     <!-- hadoop profiles in the root pom are only used for dependency management -->
     <profile>
       <id>hadoop-1</id>