From 8b353e9470eb86cba72271226ae7e4b9b3fdbcc3 Mon Sep 17 00:00:00 2001 From: Simon Kitching Date: Tue, 1 Aug 2006 01:14:53 +0000 Subject: [PATCH] Change key of servlet api jar from "servletapi" to "servlet-api". The maven2 tests pull this jar from the maven2 repository, and in there the jarfile has a different name from the jarfile in the maven1 repo where ant pulls it from :-(. git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@427395 13f79535-47bb-0310-9956-ffa450edef68 --- build.xml | 2 +- .../apache/commons/logging/servlet/BasicServletTestCase.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.xml b/build.xml index 63b2ffa..f9cf40f 100644 --- a/build.xml +++ b/build.xml @@ -204,7 +204,7 @@ - + diff --git a/src/test/org/apache/commons/logging/servlet/BasicServletTestCase.java b/src/test/org/apache/commons/logging/servlet/BasicServletTestCase.java index d0fcf5e..504b173 100644 --- a/src/test/org/apache/commons/logging/servlet/BasicServletTestCase.java +++ b/src/test/org/apache/commons/logging/servlet/BasicServletTestCase.java @@ -46,7 +46,7 @@ public class BasicServletTestCase extends TestCase { PathableClassLoader parent = new PathableClassLoader(null); parent.useExplicitLoader("junit.", Test.class.getClassLoader()); parent.addLogicalLib("commons-logging"); - parent.addLogicalLib("servletapi"); + parent.addLogicalLib("servlet-api"); PathableClassLoader child = new PathableClassLoader(parent); child.setParentFirst(false);