Renaming for easier conversion, some more manual conversion

This commit is contained in:
Ilya Chernikov
2017-12-08 11:57:48 +01:00
committed by Vyacheslav Gerasimov
parent 6f21c36d68
commit a418a3ac49
5 changed files with 47 additions and 45 deletions
-9
View File
@@ -1,15 +1,6 @@
apply { plugin("kotlin") }
//configureIntellijPlugin {
// setExtraDependencies("intellij-core")
//}
repositories {
intellijSdkRepo(project)
androidDxJarRepo(project)
}
dependencies {
testCompile(project(":core:descriptors"))
testCompile(project(":core:descriptors.jvm"))
+3 -12
View File
@@ -3,21 +3,12 @@ apply { plugin("kotlin") }
jvmTarget = "1.6"
configureIntellijPlugin {
setExtraDependencies("intellij-core", "jps-standalone")
}
dependencies {
compile(projectDist(":kotlin-stdlib"))
compile(project(":core:deserialization"))
}
afterEvaluate {
dependencies {
compileOnly(intellijCoreJar())
compileOnly(intellijCoreJarDependencies())
compileOnly(intellijExtra("jps-standalone") { include("jps-model.jar") })
}
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) { includeIntellijCoreJarDependencies(project) }
compileOnly(intellijDep("jps-standalone")) { includeJars("jps-model") }
}
sourceSets {