All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.jetty.maven.plugin.JettyRunWarMojo Maven / Gradle / Ivy

There is a newer version: 11.0.24
Show newest version
//
//  ========================================================================
//  Copyright (c) 1995-2022 Mort Bay Consulting Pty Ltd and others.
//  ------------------------------------------------------------------------
//  All rights reserved. This program and the accompanying materials
//  are made available under the terms of the Eclipse Public License v1.0
//  and Apache License v2.0 which accompanies this distribution.
//
//      The Eclipse Public License is available at
//      http://www.eclipse.org/legal/epl-v10.html
//
//      The Apache License v2.0 is available at
//      http://www.opensource.org/licenses/apache2.0.php
//
//  You may elect to redistribute this code under either of these licenses.
//  ========================================================================
//

package org.eclipse.jetty.maven.plugin;

import java.io.File;
import java.io.IOException;

import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Execute;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.plugins.annotations.ResolutionScope;

/**
 * 

* This goal is used to assemble your webapp into a war and automatically deploy it to Jetty. *

*

* Once invoked, the plugin runs continuously and can be configured to scan for changes in the project and to the * war file and automatically perform a hot redeploy when necessary. *

*

* You may also specify the location of a jetty.xml file whose contents will be applied before any plugin configuration. * This can be used, for example, to deploy a static webapp that is not part of your maven build. *

* Runs jetty on a war file */ @Mojo(name = "run-war", requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME) @Execute(phase = LifecyclePhase.PACKAGE) public class JettyRunWarMojo extends AbstractJettyMojo { /** * The location of the war file. */ @Parameter(defaultValue = "${project.build.directory}/${project.build.finalName}.war", required = true) private File war; @Override public void execute() throws MojoExecutionException, MojoFailureException { super.execute(); } @Override public void finishConfigurationBeforeStart() throws Exception { server.setStopAtShutdown(true); //as we will normally be stopped with a cntrl-c, ensure server stopped super.finishConfigurationBeforeStart(); } @Override public void configureWebApplication() throws Exception { super.configureWebApplication(); webApp.setWar(war.getCanonicalPath()); } @Override public void configureScanner() throws MojoExecutionException { try { scanner.addFile(project.getFile().toPath()); scanner.addFile(war.toPath()); } catch (IOException e) { throw new MojoExecutionException("Error configuring scanner", e); } } @Override public void restartWebApp(boolean reconfigureScanner) throws Exception { getLog().info("Restarting webapp ..."); getLog().debug("Stopping webapp ..."); stopScanner(); webApp.stop(); getLog().debug("Reconfiguring webapp ..."); checkPomConfiguration(); // check if we need to reconfigure the scanner, // which is if the pom changes if (reconfigureScanner) { getLog().info("Reconfiguring scanner after change to pom.xml ..."); scanner.reset(); configureScanner(); } getLog().debug("Restarting webapp ..."); webApp.start(); startScanner(); getLog().info("Restart completed."); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy