26 lines
841 B
Kotlin
26 lines
841 B
Kotlin
|
|
apply {
|
|
plugin("kotlin")
|
|
plugin("java")
|
|
}
|
|
|
|
dependencies {
|
|
val compile by configurations
|
|
compile(project(":compiler:frontend"))
|
|
compile(project(":idea"))
|
|
compile(project(":idea:idea-core"))
|
|
compile(project(":idea:idea-android"))
|
|
compile(project(":plugins:uast-kotlin"))
|
|
compile(preloadedDeps("uast-common", "uast-java"))
|
|
compile(ideaPluginDeps("android", "android-common", "common", "sdk-common", "sdklib", "sdk-tools", "repository", "lombok-ast", "kxml2", plugin = "android"))
|
|
compile(ideaSdkCoreDeps("intellij-core", "util"))
|
|
compile(ideaSdkDeps("guava"))
|
|
}
|
|
|
|
configureKotlinProjectSources("android-annotations/src",
|
|
"lint-api/src",
|
|
"lint-checks/src",
|
|
"lint-idea/src")
|
|
configureKotlinProjectNoTests()
|
|
|