Package org.ysb33r.gradle.iac.base.tf
Interface BasicSourceSetExecutionEnvironment
-
- All Known Subinterfaces:
SourceSetExecutionEnvironment
public interface BasicSourceSetExecutionEnvironmentProvide the default executable and environment associated with a source set or module source set.- Since:
- 2.1 (Methods were pulled up from
SourceSetExecutionEnvironment.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.gradle.api.provider.Provider<java.util.Map<java.lang.String,java.lang.String>>getEnvironment()Provider to the full running environment.org.gradle.api.provider.Provider<java.io.File>getExecutableLocation()Location of the executable that will be used for this source setorg.gradle.api.provider.Provider<java.lang.String>getExecutableVersion()Version of the executable that will be used for this source set
-
-
-
Method Detail
-
getExecutableLocation
org.gradle.api.provider.Provider<java.io.File> getExecutableLocation()
Location of the executable that will be used for this source set- Returns:
- Provider to the executable
-
getExecutableVersion
org.gradle.api.provider.Provider<java.lang.String> getExecutableVersion()
Version of the executable that will be used for this source set- Returns:
- Provider to the version.
-
getEnvironment
org.gradle.api.provider.Provider<java.util.Map<java.lang.String,java.lang.String>> getEnvironment()
Provider to the full running environment.- Returns:
- Provider to the environment map.
-
-