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 06:51:50 UTC

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

Author: rec
Date: Mon Jul 18 06:51:50 2016
New Revision: 1753158

URL: http://svn.apache.org/viewvc?rev=1753158&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=1753158&r1=1753157&r2=1753158&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-parent/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-parent/pom.xml Mon Jul 18 06:51:50 2016
@@ -223,7 +223,8 @@
             <configuration>
               <excludes>
                 <!-- Duplicates on classpath cause an exception in JaCoCo report -->
-                <exclude>**/org/apache/uima/examples/SourceDocumentInformation*.*</exclude>
+                <exclude>**/org/apache/uima/examples/SourceDocumentInformation.*</exclude>
+                <exclude>**/org/apache/uima/examples/SourceDocumentInformation_Type.*</exclude>
               </excludes>
             </configuration>
         </plugin>