Interface BuildOperationParametersVersion1
-
- All Superinterfaces:
LongRunningOperationParametersVersion1
- All Known Implementing Classes:
ConsumerOperationParameters
@Deprecated public interface BuildOperationParametersVersion1 extends LongRunningOperationParametersVersion1
Deprecated.1.2-rc-1. UseBuildParameters
instead.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.TimeUnit
getDaemonMaxIdleTimeUnits()
Deprecated.Specifies the units for the maximum idle time.java.lang.Integer
getDaemonMaxIdleTimeValue()
Deprecated.Specifies the maximum idle time for any daemon process launched by the provider, or null to use the default.java.io.File
getGradleUserHomeDir()
Deprecated.Returns the Gradle user home directory, or null to use default.java.io.File
getProjectDir()
Deprecated.long
getStartTime()
Deprecated.boolean
getVerboseLogging()
Deprecated.java.lang.Boolean
isEmbedded()
Deprecated.Specifies whether to run the build in this process, or null to use default.java.lang.Boolean
isSearchUpwards()
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
-
-