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-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org