Get rid of test-to-production dependencies as it's not supported in plain IDEA projects

This commit is contained in:
Yan Zhulanow
2018-02-14 23:54:47 +03:00
parent e7a2743dcf
commit df88acaefd
51 changed files with 23 additions and 23 deletions
+14 -14
View File
@@ -3,22 +3,22 @@ apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compile(project(":compiler:frontend"))
compile(project(":compiler:frontend.script"))
compile(projectTests(":compiler:tests-common"))
compile(project(":idea"))
compile(project(":idea:idea-jvm"))
compile(project(":idea:idea-core"))
compile(project(":idea:idea-jps-common"))
compile(project(":kotlin-test:kotlin-test-jvm"))
compileOnly(project(":kotlin-reflect-api"))
compile(commonDep("junit:junit"))
compileOnly(intellijDep()) { includeJars("openapi", "idea", "log4j") }
testCompile(project(":compiler:frontend"))
testCompile(project(":compiler:frontend.script"))
testCompile(projectTests(":compiler:tests-common"))
testCompile(project(":idea"))
testCompile(project(":idea:idea-jvm"))
testCompile(project(":idea:idea-core"))
testCompile(project(":idea:idea-jps-common"))
testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompileOnly(project(":kotlin-reflect-api"))
testCompile(commonDep("junit:junit"))
testCompileOnly(intellijDep()) { includeJars("openapi", "idea", "log4j") }
}
sourceSets {
"main" { projectDefault() }
"test" {}
"main" { }
"test" { projectDefault() }
}
testsJar()