1   package com.atlassian.maven.plugins.amps;
2   
3   import org.jfrog.maven.annomojo.annotations.MojoGoal;
4   import org.jfrog.maven.annomojo.annotations.MojoRequiresProject;
5   
6   /**
7    * Debug the webapp without a plugin project
8    */
9   @MojoGoal ("debug-standalone")
10  @MojoRequiresProject (false)
11  public class DebugStandaloneMojo extends RunStandaloneMojo
12  {
13      @Override
14      protected String getAmpsGoal()
15      {
16          return "debug";
17      }
18  }