/maven-amps-dispatcher-plugin/src/main/java/com/atlassian/maven/plugins/ampsdispatcher/AmpsDispatcherRemoteTestMojo.java

https://bitbucket.org/mmeinhold/amps · Java · 15 lines · 11 code · 4 blank · 0 comment · 0 complexity · 30d42430f75ce7fe673477d8f7c7f412 MD5 · raw file

  1. package com.atlassian.maven.plugins.ampsdispatcher;
  2. import com.atlassian.maven.plugins.amps.RemoteTestMojo;
  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. @Mojo(name = "remote-test", requiresDependencyResolution = ResolutionScope.TEST, defaultPhase = LifecyclePhase.PRE_INTEGRATION_TEST)
  8. @Execute(phase = LifecyclePhase.PACKAGE)
  9. public class AmpsDispatcherRemoteTestMojo extends AbstractAmpsDispatcherMojo
  10. {
  11. }