Convert more projects

This commit is contained in:
Ilya Chernikov
2017-10-27 18:17:59 +02:00
committed by Vyacheslav Gerasimov
parent 743f599262
commit 6614695616
6 changed files with 78 additions and 31 deletions
+11 -2
View File
@@ -3,16 +3,25 @@ apply { plugin("kotlin") }
jvmTarget = "1.6"
configureIntellijPlugin {
setExtraDependencies("intellij-core")
}
dependencies {
compile(project(":core:util.runtime"))
compile(commonDep("javax.inject"))
compile(ideaSdkCoreDeps("intellij-core"))
compileOnly(project(":kotlin-stdlib"))
testCompile(project(":kotlin-stdlib"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm"))
testCompile(projectDist(":kotlin-test:kotlin-test-junit"))
testCompile(commonDep("junit:junit"))
testRuntime(ideaSdkCoreDeps("trove4j", "intellij-core"))
}
afterEvaluate {
dependencies {
compile(intellijCoreJar())
testRuntime(intellij { include("trove4j.jar") })
}
}
sourceSets {