Interface BuildOperationParametersVersion1
-
- All Superinterfaces:
LongRunningOperationParametersVersion1
- All Known Implementing Classes:
ConsumerOperationParameters
@Deprecated public interface BuildOperationParametersVersion1 extends LongRunningOperationParametersVersion1
Deprecated.1.2-rc-1. UseBuildParametersinstead.DO NOT CHANGE THIS INTERFACE. It is part of the cross-version protocol.- Since:
- 1.0-milestone-3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.util.concurrent.TimeUnitgetDaemonMaxIdleTimeUnits()Deprecated.Specifies the units for the maximum idle time.java.lang.IntegergetDaemonMaxIdleTimeValue()Deprecated.Specifies the maximum idle time for any daemon process launched by the provider, or null to use the default.java.io.FilegetGradleUserHomeDir()Deprecated.Returns the Gradle user home directory, or null to use default.java.io.FilegetProjectDir()Deprecated.longgetStartTime()Deprecated.booleangetVerboseLogging()Deprecated.java.lang.BooleanisEmbedded()Deprecated.Specifies whether to run the build in this process, or null to use default.java.lang.BooleanisSearchUpwards()Deprecated.The ability to change the search upward behavior when calling a build has been removed in Gradle 7.0.-
Methods inherited from interface org.gradle.tooling.internal.protocol.LongRunningOperationParametersVersion1
getProgressListener, getStandardError, getStandardInput, getStandardOutput
-
-
-
-
Method Detail
-
getProjectDir
java.io.File getProjectDir()
Deprecated.- Since:
- 1.0-milestone-3
-
isSearchUpwards
@Deprecated java.lang.Boolean isSearchUpwards()
Deprecated.The ability to change the search upward behavior when calling a build has been removed in Gradle 7.0. This is kept for compatibility with pre 7.0 versions.Specifies whether to search for root project, or null to use default.- Since:
- 1.0-milestone-3
-
getGradleUserHomeDir
java.io.File getGradleUserHomeDir()
Deprecated.Returns the Gradle user home directory, or null to use default.- Since:
- 1.0-milestone-3
-
isEmbedded
java.lang.Boolean isEmbedded()
Deprecated.Specifies whether to run the build in this process, or null to use default.- Since:
- 1.0-milestone-3
-
getDaemonMaxIdleTimeValue
java.lang.Integer getDaemonMaxIdleTimeValue()
Deprecated.Specifies the maximum idle time for any daemon process launched by the provider, or null to use the default.- Since:
- 1.0-milestone-3
-
getDaemonMaxIdleTimeUnits
java.util.concurrent.TimeUnit getDaemonMaxIdleTimeUnits()
Deprecated.Specifies the units for the maximum idle time.- Since:
- 1.0-milestone-3
-
getStartTime
long getStartTime()
Deprecated.- Since:
- 1.0-milestone-3
-
getVerboseLogging
boolean getVerboseLogging()
Deprecated.- Since:
- 1.0-milestone-7
-
-