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/07/18 10:12:36 UTC

svn commit: r1753197 - /uima/uimaj/trunk/uimaj-parent/pom.xml

Author: rec
Date: Mon Jul 18 10:12:36 2016
New Revision: 1753197

URL: http://svn.apache.org/viewvc?rev=1753197&view=rev
Log:
[UIMA-4580] Findbugs (and others) fail on Java 8 CI build
- Try to work around JaCoCo report exception with duplicate classes

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

Modified: uima/uimaj/trunk/uimaj-parent/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-parent/pom.xml?rev=1753197&r1=1753196&r2=1753197&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-parent/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-parent/pom.xml Mon Jul 18 10:12:36 2016
@@ -220,13 +220,6 @@
           <groupId>org.jacoco</groupId>
           <artifactId>jacoco-maven-plugin</artifactId>
           <version>0.7.6.201602180812</version>
-          <configuration>
-            <excludes>
-              <!-- Duplicates on classpath cause an exception in JaCoCo report -->
-              <exclude>**/org/apache/uima/examples/SourceDocumentInformation*</exclude>
-              <exclude>**/org/apache/uima/examples/SourceDocumentInformation_Type*</exclude>
-            </excludes>
-          </configuration>
         </plugin>
       </plugins>
     </pluginManagement>
@@ -331,6 +324,13 @@
           <plugin>
             <groupId>org.jacoco</groupId>
             <artifactId>jacoco-maven-plugin</artifactId>
+            <configuration>
+              <excludes>
+                <!-- Duplicates on classpath cause an exception in JaCoCo report -->
+                <exclude>**/org/apache/uima/examples/SourceDocumentInformation*</exclude>
+                <exclude>**/org/apache/uima/examples/SourceDocumentInformation_Type*</exclude>
+              </excludes>
+            </configuration>
             <executions>
               <execution>
                 <id>default-prepare-agent</id>