1   package com.atlassian.maven.plugins.ampsdispatcher;
2   
3   import org.apache.maven.plugins.annotations.Execute;
4   import org.apache.maven.plugins.annotations.LifecyclePhase;
5   import org.apache.maven.plugins.annotations.Mojo;
6   import org.apache.maven.plugins.annotations.ResolutionScope;
7   
8   /**
9    * Run the webapp
10   */
11  @Mojo(name = "run", requiresDependencyResolution = ResolutionScope.RUNTIME)
12  @Execute(phase = LifecyclePhase.PACKAGE)
13  public class AmpsDispatcherRunMojo extends AbstractAmpsDispatcherMojo
14  {
15  }
16