blob: 5b425438f780d19c22ea095c88a4fcd2caef09cd [file]
plugins {
kotlin("jvm")
}
kotlin.jvmToolchain(11)
dependencies {
embedded(project(":plugins:compose-compiler-plugin:compiler-hosted")) { isTransitive = false }
}
description = "Compiler plugin that enables Compose"
publish {
artifactId = "kotlin-compose-compiler-plugin-embeddable"
pom {
name.set("Compose Compiler")
developers {
developer {
name.set("The Android Open Source Project")
}
}
}
}
runtimeJarWithRelocation {
relocate("com.intellij", "org.jetbrains.kotlin.com.intellij")
}
sourcesJar()
javadocJar()