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
10
11 @Mojo(name = "debug", requiresDependencyResolution = ResolutionScope.RUNTIME)
12 @Execute(phase = LifecyclePhase.PACKAGE)
13 public class AmpsDispatcherDebugMojo extends AbstractAmpsDispatcherMojo
14 {
15 }