Files
kotlin-fork/idea/ide-common/build.gradle.kts
T
2018-01-30 17:06:11 +03:00

28 lines
551 B
Kotlin

apply { plugin("kotlin") }
configureIntellijPlugin {
setExtraDependencies("intellij-core")
}
dependencies {
compile(project(":compiler:util"))
compile(project(":compiler:frontend"))
compile(project(":compiler:frontend.java"))
compile(project(":js:js.frontend"))
compile(project(":js:js.serializer"))
}
afterEvaluate {
dependencies {
compileOnly(intellijCoreJar())
compileOnly(intellij { include("annotations.jar", "guava-*.jar") })
}
}
sourceSets {
"main" { projectDefault() }
"test" {}
}