407812 - jetty-maven-plugin can not handle whitespaces in equivalent of WEB-INF/classes paths

This commit is contained in:
Jan Bartel 2013-05-13 17:51:12 +10:00
parent 34b28503e6
commit 79f6121894
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ public class MavenAnnotationConfiguration extends AnnotationConfiguration
//scan the equivalent of the WEB-INF/classes directory that has been synthesised by the plugin
if (f.isDirectory() && f.exists())
{
doParse(context, parser, Resource.newResource(f.toURL()));
doParse(context, parser, Resource.newResource(f.toURI()));
}
}