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/17 21:00:59 UTC

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

Author: rec
Date: Sun Jul 17 21:00:59 2016
New Revision: 1753118

URL: http://svn.apache.org/viewvc?rev=1753118&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=1753118&r1=1753117&r2=1753118&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-parent/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-parent/pom.xml Sun Jul 17 21:00:59 2016
@@ -220,6 +220,12 @@
           <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>
+              </excludes>
+            </configuration>
         </plugin>
       </plugins>
     </pluginManagement>