You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by kk...@apache.org on 2013/11/24 23:01:22 UTC

svn commit: r1545082 - /tomcat/trunk/build.xml

Author: kkolinko
Date: Sun Nov 24 22:01:22 2013
New Revision: 1545082

URL: http://svn.apache.org/r1545082
Log:
Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=52323
Exclude servlet-api and Jetty JARs from Cobertura classpath. It works without them.

Modified:
    tomcat/trunk/build.xml

Modified: tomcat/trunk/build.xml
URL: http://svn.apache.org/viewvc/tomcat/trunk/build.xml?rev=1545082&r1=1545081&r2=1545082&view=diff
==============================================================================
--- tomcat/trunk/build.xml (original)
+++ tomcat/trunk/build.xml Sun Nov 24 22:01:22 2013
@@ -1366,6 +1366,8 @@
       <fileset dir="${cobertura.home}">
         <include name="cobertura-${cobertura.version}.jar" />
         <include name="lib/**/*.jar" />
+        <exclude name="lib/**/jetty*.jar" />
+        <exclude name="lib/**/servlet-api*.jar" />
       </fileset>
     </path>
 



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org