e724cfa60f
This reverts commit e6f6451
30 lines
444 B
Kotlin
30 lines
444 B
Kotlin
|
|
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()
|