Minor, fix typo in -include-runtime argument help
#KT-34240 Fixed
This commit is contained in:
+1
-1
@@ -22,7 +22,7 @@ class K2JVMCompilerArguments : CommonCompilerArguments() {
|
|||||||
var classpath: String? by NullableStringFreezableVar(null)
|
var classpath: String? by NullableStringFreezableVar(null)
|
||||||
|
|
||||||
@GradleOption(DefaultValues.BooleanFalseDefault::class)
|
@GradleOption(DefaultValues.BooleanFalseDefault::class)
|
||||||
@Argument(value = "-include-runtime", description = "Include Kotlin runtime in to resulting .jar")
|
@Argument(value = "-include-runtime", description = "Include Kotlin runtime into the resulting .jar")
|
||||||
var includeRuntime: Boolean by FreezableVar(false)
|
var includeRuntime: Boolean by FreezableVar(false)
|
||||||
|
|
||||||
@GradleOption(DefaultValues.StringNullDefault::class)
|
@GradleOption(DefaultValues.StringNullDefault::class)
|
||||||
|
|||||||
Vendored
+1
-1
@@ -2,7 +2,7 @@ Usage: kotlinc-jvm <options> <source files>
|
|||||||
where possible options include:
|
where possible options include:
|
||||||
-classpath (-cp) <path> Paths where to find user class files
|
-classpath (-cp) <path> Paths where to find user class files
|
||||||
-d <directory|jar> Destination for generated class files
|
-d <directory|jar> Destination for generated class files
|
||||||
-include-runtime Include Kotlin runtime in to resulting .jar
|
-include-runtime Include Kotlin runtime into the resulting .jar
|
||||||
-java-parameters Generate metadata for Java 1.8 reflection on method parameters
|
-java-parameters Generate metadata for Java 1.8 reflection on method parameters
|
||||||
-jdk-home <path> Path to JDK home directory to include into classpath, if differs from default JAVA_HOME
|
-jdk-home <path> Path to JDK home directory to include into classpath, if differs from default JAVA_HOME
|
||||||
-jvm-target <version> Target version of the generated JVM bytecode (1.6, 1.8, 9, 10, 11 or 12), default is 1.6
|
-jvm-target <version> Target version of the generated JVM bytecode (1.6, 1.8, 9, 10, 11 or 12), default is 1.6
|
||||||
|
|||||||
+1
-1
@@ -5,7 +5,7 @@ package org.jetbrains.kotlin.gradle.dsl
|
|||||||
interface KotlinJvmOptions : org.jetbrains.kotlin.gradle.dsl.KotlinCommonOptions {
|
interface KotlinJvmOptions : org.jetbrains.kotlin.gradle.dsl.KotlinCommonOptions {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Include Kotlin runtime in to resulting .jar
|
* Include Kotlin runtime into the resulting .jar
|
||||||
* Default value: false
|
* Default value: false
|
||||||
*/
|
*/
|
||||||
var includeRuntime: kotlin.Boolean
|
var includeRuntime: kotlin.Boolean
|
||||||
|
|||||||
Reference in New Issue
Block a user