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:10:15 UTC

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

Author: rec
Date: Mon Jul 18 10:10:15 2016
New Revision: 1753195

URL: http://svn.apache.org/viewvc?rev=1753195&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=1753195&r1=1753194&r2=1753195&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-parent/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-parent/pom.xml Mon Jul 18 10:10:15 2016
@@ -220,13 +220,13 @@
           <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>
+          <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>