org.mockserver.maven.ProcessBuildFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockserver-maven-plugin Show documentation
Show all versions of mockserver-maven-plugin Show documentation
A maven plugin to start and stop the MockServer
package org.mockserver.maven;
import java.util.List;
/**
* @author jamesdbloom
*/
public class ProcessBuildFactory {
protected ProcessBuilder create(List arguments) {
return new ProcessBuilder(arguments);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy