Change kotlin-assignment plugin to use published compiler plugin

^KT-52811 In Progress
This commit is contained in:
Yahor Berdnikau
2023-03-20 17:43:03 +01:00
committed by Space Team
parent 1ccd7afde7
commit 5e41cbda75
3 changed files with 9 additions and 27 deletions
@@ -16,8 +16,6 @@ dependencies {
commonCompileOnly(project(":compiler"))
commonCompileOnly(project(":kotlin-assignment-compiler-plugin"))
embedded(project(":kotlin-assignment-compiler-plugin")) { isTransitive = false }
testImplementation(commonDependency("junit"))
}
@@ -18,7 +18,7 @@ class AssignmentSubplugin
) : KotlinCompilerPluginSupportPlugin {
companion object {
const val COMPILER_PLUGIN_ARTIFACT_NAME = "kotlin-assignment"
const val COMPILER_PLUGIN_ARTIFACT_NAME = "kotlin-assignment-compiler-plugin-embeddable"
const val COMPILER_PLUGIN_ID = "org.jetbrains.kotlin.assignment"
private const val ANNOTATION_ARG_NAME = "annotation"
}