org.mockserver.maven.MockServerStopMojo Maven / Gradle / Ivy
package org.mockserver.maven;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
/**
* Stop the MockServer in the verify phase of the build after any integration tests have completed
*
* @author jamesdbloom
*/
@Mojo(name = "stop", defaultPhase = LifecyclePhase.VERIFY)
public class MockServerStopMojo extends MockServerAbstractMojo {
public void execute() {
if (skip) {
getLog().info("Skipping plugin execution");
} else {
getLog().info("Stopping the MockServer");
getLocalMockServerInstance().stop();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy