All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.gradleplugins.runnerkit.GradleExecutionResultNokeeExecImpl Maven / Gradle / Ivy

There is a newer version: 0.0.148
Show newest version
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