-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum KotlinCompilerExecutionStrategy extends Enum<KotlinCompilerExecutionStrategy>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
KotlinCompilerExecutionStrategy.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description DAEMON
Execute Kotlin compiler in its own daemon. Default strategy.
Daemon may be shared across multiple compile tasks if it's considered compatible
IN_PROCESS
Execute Kotlin compiler inside the Gradle process
Note: currently this strategy doesn't support incremental compilation
OUT_OF_PROCESS
Execute Kotlin compiler in a new forked process for each compilation
Note: currently this strategy doesn't support incremental compilation
-
Method Summary
Modifier and Type Method Description final String
getPropertyValue()
Value that should be passed for kotlin.compiler.execution.strategy
Gradle property to choose the strategy
-
-
-
Method Detail
-
getPropertyValue
final String getPropertyValue()
Value that should be passed for
kotlin.compiler.execution.strategy
Gradle property to choose the strategy
-
-