You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by re...@apache.org on 2016/03/19 21:22:12 UTC

svn commit: r1735808 - /uima/uimafit/trunk/uimafit-parent/pom.xml

Author: rec
Date: Sat Mar 19 20:22:12 2016
New Revision: 1735808

URL: http://svn.apache.org/viewvc?rev=1735808&view=rev
Log:
[UIMA-4870] FindBugs 2 not compatible with Java 8

Modified:
    uima/uimafit/trunk/uimafit-parent/pom.xml

Modified: uima/uimafit/trunk/uimafit-parent/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimafit/trunk/uimafit-parent/pom.xml?rev=1735808&r1=1735807&r2=1735808&view=diff
==============================================================================
--- uima/uimafit/trunk/uimafit-parent/pom.xml (original)
+++ uima/uimafit/trunk/uimafit-parent/pom.xml Sat Mar 19 20:22:12 2016
@@ -283,6 +283,34 @@
 	</build>
     <profiles>
         <profile>
+            <id>findbugs</id>
+            <build>
+                <pluginManagement>
+                    <plugins>
+                        <plugin>
+                            <groupId>org.codehaus.mojo</groupId>
+                            <artifactId>findbugs-maven-plugin</artifactId>
+                            <version>3.0.3</version>
+                            <executions>
+                                <execution>
+                                    <phase>package</phase>
+                                    <goals>
+                                        <goal>findbugs</goal>
+                                    </goals>
+                                </execution>
+                            </executions>
+                        </plugin>
+                    </plugins>
+                </pluginManagement>
+                <plugins>
+                    <plugin>
+                        <groupId>org.codehaus.mojo</groupId>
+                        <artifactId>findbugs-maven-plugin</artifactId>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+        <profile>
             <id>enforce-compatibility</id>
             <activation>
                 <file><exists>.activate-enforce-compatibility</exists></file>