dev.gradleplugins.runnerkit.providers.GradleExecutionProviderInternal Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-runner-kit-impl Show documentation
Show all versions of gradle-runner-kit-impl Show documentation
Gradle runner kit implementation.
package dev.gradleplugins.runnerkit.providers;
import dev.gradleplugins.runnerkit.GradleExecutionContext;
public interface GradleExecutionProviderInternal extends GradleExecutionProvider {
void calculateValue(GradleExecutionContext context);
default void validate(GradleExecutionContext context) {
}
}