Convert generators to intellij plugin, clean up dependencies

This commit is contained in:
Ilya Chernikov
2017-11-03 12:14:19 +01:00
committed by Vyacheslav Gerasimov
parent 0d264793ce
commit 9b51a547d8
3 changed files with 24 additions and 25 deletions
+8 -1
View File
@@ -3,12 +3,19 @@ apply { plugin("kotlin") }
jvmTarget = "1.6"
configureIntellijPlugin()
dependencies {
testCompile(project(":core:util.runtime"))
testCompile(projectTests(":compiler:tests-common"))
testCompile(projectDist(":kotlin-stdlib"))
testCompile(commonDep("junit:junit"))
testCompile(ideaSdkDeps("util"))
}
afterEvaluate {
dependencies {
compile(intellij { include("util.jar") })
}
}
sourceSets {