nebula.test.functional.PreExecutionAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nebula-test Show documentation
Show all versions of nebula-test Show documentation
Test harness for Gradle plugins. Hopefully retiring in favor of Gradle TestKit
package nebula.test.functional;
import java.io.File;
import java.util.List;
/**
* Executes actions before gradle is called.
*/
public interface PreExecutionAction {
void execute(File projectDir, List arguments, List jvmArguments);
}