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 09:07:24 UTC

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

Author: rec
Date: Mon Jul 18 09:07:24 2016
New Revision: 1753184

URL: http://svn.apache.org/viewvc?rev=1753184&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=1753184&r1=1753183&r2=1753184&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-parent/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-parent/pom.xml Mon Jul 18 09:07:24 2016
@@ -223,8 +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_Type.*</exclude>
+                <exclude>org/apache/uima/examples/SourceDocumentInformation</exclude>
+                <exclude>org/apache/uima/examples/SourceDocumentInformation_Type</exclude>
               </excludes>
             </configuration>
         </plugin>