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

dev.gradleplugins.runnerkit.providers.GradleExecutionJvmSystemPropertyProvider Maven / Gradle / Ivy

package dev.gradleplugins.runnerkit.providers;

import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;

public interface GradleExecutionJvmSystemPropertyProvider extends GradleExecutionCommandLineProvider {
    default List getAsArguments() {
        return getAsJvmSystemProperties().entrySet().stream().map(it -> "-D" + it.getKey() + "=" + it.getValue()).collect(Collectors.toList());
    }

    Map getAsJvmSystemProperties();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy