From d5ad05fd3f2c59ea4ac2f27a31a17b9591ca05a9 Mon Sep 17 00:00:00 2001 From: ForteScarlet Date: Sat, 13 Jan 2024 02:20:05 +0800 Subject: [PATCH] v0.6.0-beta4 --- .../suspendtrans/SuspendTransformCommandLineProcessor.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler/suspend-transform-plugin/src/main/kotlin/love/forte/plugin/suspendtrans/SuspendTransformCommandLineProcessor.kt b/compiler/suspend-transform-plugin/src/main/kotlin/love/forte/plugin/suspendtrans/SuspendTransformCommandLineProcessor.kt index a269b67..496cba5 100644 --- a/compiler/suspend-transform-plugin/src/main/kotlin/love/forte/plugin/suspendtrans/SuspendTransformCommandLineProcessor.kt +++ b/compiler/suspend-transform-plugin/src/main/kotlin/love/forte/plugin/suspendtrans/SuspendTransformCommandLineProcessor.kt @@ -1,5 +1,6 @@ package love.forte.plugin.suspendtrans +import BuildConfig import com.google.auto.service.AutoService import org.jetbrains.kotlin.compiler.plugin.AbstractCliOption import org.jetbrains.kotlin.compiler.plugin.CommandLineProcessor @@ -16,7 +17,7 @@ class SuspendTransformCommandLineProcessor : CommandLineProcessor { CompilerConfigurationKey.create(CliOptions.CONFIGURATION) } - override val pluginId: String = SuspendTransPluginConstants.KOTLIN_PLUGIN_ID + override val pluginId: String = BuildConfig.KOTLIN_PLUGIN_ID override val pluginOptions: Collection = CliOptions.allOptions.map { it as SimpleCliOption }