Convert idea plugin modules to intellij plugin

This commit is contained in:
Ilya Chernikov
2017-11-02 18:55:20 +01:00
committed by Vyacheslav Gerasimov
parent 3912025e14
commit 0d264793ce
19 changed files with 253 additions and 136 deletions
+11 -1
View File
@@ -1,13 +1,23 @@
apply { plugin("kotlin") }
configureIntellijPlugin {
setExtraDependencies("intellij-core")
}
dependencies {
compile(projectDist(":kotlin-stdlib"))
compileOnly(project(":kotlin-reflect-api"))
compile(project(":compiler:util"))
compile(project(":compiler:cli-common"))
compile(project(":compiler:frontend.java"))
compile(ideaSdkCoreDeps("intellij-core", "util"))
}
afterEvaluate {
dependencies {
compile(intellijCoreJar())
compile(intellij { include("util.jar") })
}
}
sourceSets {