[Gradle] Regenerate Gradle compiler arguments DSL

^KT-65986 Fixed
This commit is contained in:
Alexander.Likhachev
2024-02-20 20:44:19 +01:00
committed by Space Team
parent 95fd91ae16
commit 2d161723d5
3 changed files with 3 additions and 3 deletions
@@ -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>
}
@@ -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)
@@ -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)
}