Issue #1743 Remove dup call of configureUnassembledWebApp

Signed-off-by: Jan Bartel <janb@webtide.com>
This commit is contained in:
Jan Bartel 2019-11-11 16:44:12 +11:00
parent 084345fb9a
commit c50cc856a8
2 changed files with 1 additions and 11 deletions

View File

@ -202,7 +202,7 @@ public abstract class AbstractUnassembledWebAppMojo extends AbstractWebAppMojo
//process any overlays and the war type artifacts, and
//sets up the base resource collection for the webapp
mavenProjectHelper.getOverlayManager().applyOverlays(webApp);
getLog().info("web.xml file = " + webApp.getDescriptor());
getLog().info("Webapp directory = " + webAppSourceDirectory.getCanonicalPath());
getLog().info("Web defaults = " + (webApp.getDefaultsDescriptor() == null ? " jetty default" : webApp.getDefaultsDescriptor()));

View File

@ -87,16 +87,6 @@ public class JettyRunMojo extends AbstractUnassembledWebAppMojo
{
super.execute();
}
/**
*
*/
@Override
protected void configureWebApp() throws Exception
{
super.configureWebApp();
super.configureUnassembledWebApp();
}
@Override
public void startJettyEmbedded() throws MojoExecutionException