334443 - Improve the ability to specify extra class paths using the Jetty Maven Plugin

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@3271 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Jan Bartel 2011-05-26 02:18:10 +00:00
parent 07c619d457
commit f3a6c8f8ef
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
jetty-7.4.2-SNAPSHOT
+ 334443 Improve the ability to specify extra class paths using the Jetty Maven Plugin
+ 336220 tmp directory is not set if you reload a webapp with jetty-maven-plugin
+ 338364 Fixed expires header for set cookies
+ 345729 binding for managing server and system classes globally

View File

@ -220,7 +220,7 @@ public class WebAppClassLoader extends URLClassLoader
StringTokenizer tokenizer= new StringTokenizer(classPath, ",;");
while (tokenizer.hasMoreTokens())
{
Resource resource= _context.newResource(tokenizer.nextToken());
Resource resource= _context.newResource(tokenizer.nextToken().trim());
if (Log.isDebugEnabled())
Log.debug("Path resource=" + resource);