dev.gradleplugins.runnerkit.GradleExecutionResultNokeeExecImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-runner-kit-wrapper-impl Show documentation
Show all versions of gradle-runner-kit-wrapper-impl Show documentation
Gradle runner kit implementation for Gradle wrapper executor.
package dev.gradleplugins.runnerkit;
import dev.nokee.core.exec.CommandLineToolExecutionResult;
final class GradleExecutionResultNokeeExecImpl implements GradleExecutionResult {
private final CommandLineToolExecutionResult delegate;
public GradleExecutionResultNokeeExecImpl(CommandLineToolExecutionResult delegate) {
this.delegate = delegate;
}
@Override
public String getOutput() {
return delegate.getOutput().getAsString();
}
@Override
public boolean isSuccessful() {
return delegate.getExitValue() == 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy