Convert js modules to intellij plugin

This commit is contained in:
Ilya Chernikov
2017-11-02 14:18:21 +01:00
committed by Vyacheslav Gerasimov
parent 74411d9b9c
commit 8266777bd5
7 changed files with 71 additions and 7 deletions
+12 -1
View File
@@ -3,12 +3,23 @@ apply { plugin("kotlin") }
jvmTarget = "1.6"
configureIntellijPlugin {
setExtraDependencies("intellij-core")
}
dependencies {
compile(project(":compiler:util"))
compile(project(":compiler:frontend"))
compile(ideaSdkCoreDeps("trove4j", "intellij-core"))
}
afterEvaluate {
dependencies {
compile(intellijCoreJar())
compile(intellij { include("trove6j.jar")} )
}
}
sourceSets {
"main" { projectDefault() }
"test" {}