Revert "Build: Copy uast to idea plugin as separate artifacts"

This reverts commit e6f6451
This commit is contained in:
Vyacheslav Gerasimov
2018-06-22 17:21:04 +03:00
parent bef97d85af
commit e724cfa60f
7 changed files with 32 additions and 43 deletions
+29
View File
@@ -0,0 +1,29 @@
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()