[Gradle] Regenerate Gradle compiler arguments DSL
^KT-65986 Fixed
This commit is contained in:
committed by
Space Team
parent
95fd91ae16
commit
2d161723d5
+1
-1
@@ -23,7 +23,7 @@ interface KotlinJsDceCompilerToolOptions : org.jetbrains.kotlin.gradle.dsl.Kotli
|
||||
*
|
||||
* Default value: null
|
||||
*/
|
||||
@Deprecated(message = "Use task 'destinationDirectory' to configure output directory", level = DeprecationLevel.WARNING)
|
||||
@Deprecated(message = "Use task 'destinationDirectory' to configure output directory", level = DeprecationLevel.ERROR)
|
||||
@get:org.gradle.api.tasks.Internal
|
||||
val outputDirectory: org.gradle.api.provider.Property<kotlin.String>
|
||||
}
|
||||
|
||||
+1
-1
@@ -28,7 +28,7 @@ interface KotlinJsDceOptions : org.jetbrains.kotlin.gradle.dsl.KotlinCommonToolO
|
||||
*
|
||||
* Default value: null
|
||||
*/
|
||||
@Deprecated(message = "Use task 'destinationDirectory' to configure output directory", level = DeprecationLevel.WARNING)
|
||||
@Deprecated(message = "Use task 'destinationDirectory' to configure output directory", level = DeprecationLevel.ERROR)
|
||||
var outputDirectory: kotlin.String?
|
||||
get() = options.outputDirectory.orNull
|
||||
set(value) = options.outputDirectory.set(value)
|
||||
|
||||
+1
-1
@@ -12,7 +12,7 @@ internal abstract class KotlinJsDceCompilerToolOptionsDefault @javax.inject.Inje
|
||||
override val devMode: org.gradle.api.provider.Property<kotlin.Boolean> =
|
||||
objectFactory.property(kotlin.Boolean::class.java).convention(false)
|
||||
|
||||
@Deprecated(message = "Use task 'destinationDirectory' to configure output directory", level = DeprecationLevel.WARNING)
|
||||
@Deprecated(message = "Use task 'destinationDirectory' to configure output directory", level = DeprecationLevel.ERROR)
|
||||
override val outputDirectory: org.gradle.api.provider.Property<kotlin.String> =
|
||||
objectFactory.property(kotlin.String::class.java)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user