Skip to content
Snippets Groups Projects
Commit aaf1ba8f authored by felmer's avatar felmer
Browse files

SP-239, SWE-6: bug fixed

SVN: 26461
parent 0d2148dd
No related branches found
No related tags found
No related merge requests found
......@@ -98,6 +98,10 @@ public class JettyWebAppPluginInjector
if (webappName.startsWith(".") == false)
{
Properties webappProps = webappProperties.get(webappName);
if (webappProps == null)
{
return;
}
String f = webappProps.getProperty(WEB_APP_FOLDER_PROPERTY);
webappToFoldersMap.put(webappName, new File(f));
}
......@@ -119,6 +123,10 @@ public class JettyWebAppPluginInjector
for (String webapp : webapps)
{
File folder = webappToFoldersMap.get(webapp);
if (folder == null)
{
continue;
}
String path = folder.getAbsolutePath();
for (File target : targets)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment