blob: d0523c065015a36b2349d8a5cc41f75108d51a6f [file] [log] [blame] [edit]
description = "Kotlin Android Lint"
plugins {
`java-base`
id("jps-compatible")
}
val projectsToShadow = listOf(
":plugins:lint",
":plugins:uast-kotlin",
":plugins:uast-kotlin-idea")
sourceSets {
"main" {}
"test" {}
}
dependencies {
projectsToShadow.forEach { p ->
embeddedComponents(project(p)) { isTransitive = false }
}
}
runtimeJar {
fromEmbeddedComponents()
}
ideaPlugin()