Get rid of test-to-production dependencies as it's not supported in plain IDEA projects
This commit is contained in:
@@ -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()
|
||||
Reference in New Issue
Block a user