1   package com.atlassian.maven.plugins.ampsdispatcher;
2   
3   import com.atlassian.maven.plugins.amps.RemoteTestMojo;
4   
5   import org.apache.maven.plugins.annotations.Execute;
6   import org.apache.maven.plugins.annotations.LifecyclePhase;
7   import org.apache.maven.plugins.annotations.Mojo;
8   import org.apache.maven.plugins.annotations.ResolutionScope;
9   
10  @Mojo(name = "remote-test", requiresDependencyResolution = ResolutionScope.TEST, defaultPhase = LifecyclePhase.PRE_INTEGRATION_TEST)
11  @Execute(phase = LifecyclePhase.PACKAGE)
12  public class AmpsDispatcherRemoteTestMojo extends RemoteTestMojo
13  {
14  
15  }