1   package com.atlassian.maven.plugins.ampsdispatcher;
2   
3   import org.jfrog.maven.annomojo.annotations.MojoGoal;
4   import org.jfrog.maven.annomojo.annotations.MojoExecute;
5   import org.jfrog.maven.annomojo.annotations.MojoRequiresDependencyResolution;
6   
7   /**
8    * Debug the webapp
9    */
10  @MojoGoal("debug")
11  @MojoExecute(phase = "package")
12  @MojoRequiresDependencyResolution
13  public class AmpsDispatcherDebugMojo extends AbstractAmpsDispatcherMojo
14  {
15  }