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:
parent
07c619d457
commit
f3a6c8f8ef
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue