View Javadoc

1   //
2   //  ========================================================================
3   //  Copyright (c) 1995-2013 Mort Bay Consulting Pty. Ltd.
4   //  ------------------------------------------------------------------------
5   //  All rights reserved. This program and the accompanying materials
6   //  are made available under the terms of the Eclipse Public License v1.0
7   //  and Apache License v2.0 which accompanies this distribution.
8   //
9   //      The Eclipse Public License is available at
10  //      http://www.eclipse.org/legal/epl-v10.html
11  //
12  //      The Apache License v2.0 is available at
13  //      http://www.opensource.org/licenses/apache2.0.php
14  //
15  //  You may elect to redistribute this code under either of these licenses.
16  //  ========================================================================
17  //
18  
19  package org.eclipse.jetty.maven.plugin;
20  
21  /**
22   * <p>
23   * This goal is used to run Jetty with a pre-assembled war.
24   * </p>
25   * <p>
26   * It accepts exactly the same options as the <a href="run-war-mojo.html">run-war</a> goal. 
27   * However, it doesn't assume that the current artifact is a
28   * webapp and doesn't try to assemble it into a war before its execution. 
29   * So using it makes sense only when used in conjunction with the 
30   * <a href="run-war-mojo.html#webApp">webApp</a> configuration parameter pointing to a pre-built WAR.
31   * </p>
32   * <p>
33   * This goal is useful e.g. for launching a web app in Jetty as a target for unit-tested 
34   * HTTP client components.
35   * </p>
36   * 
37   * @goal deploy-war
38   * @requiresDependencyResolution runtime
39   * @execute phase="validate"
40   * @description Deploy a pre-assembled war
41   * 
42   */
43  public class JettyDeployWar extends JettyRunWarMojo
44  {
45  }