Add infrastructure and helpers for using intellij plugin, convert first project

This commit is contained in:
Ilya Chernikov
2017-10-27 16:45:39 +02:00
committed by Vyacheslav Gerasimov
parent a0d0bc074b
commit 743f599262
6 changed files with 118 additions and 4 deletions
+12 -1
View File
@@ -3,10 +3,21 @@ apply { plugin("kotlin") }
jvmTarget = "1.6"
configureIntellijPlugin {
setExtraDependencies("intellij-core", "jps-standalone")
}
dependencies {
compile(projectDist(":kotlin-stdlib"))
compile(project(":core:deserialization"))
compile(ideaSdkCoreDeps(*(rootProject.extra["ideaCoreSdkJars"] as Array<String>)))
}
afterEvaluate {
dependencies {
compile(intellijCoreJar())
compile(intellijCoreJarDependencies())
compile(intellijExtra("jps-standalone") { include("jps-model.jar") })
}
}
sourceSets {