Use legacy configuration names to make jps import happy
This commit is contained in:
committed by
Vyacheslav Gerasimov
parent
f428bbb782
commit
ab32f2efac
+27
-27
@@ -26,42 +26,42 @@ val (evaluateSourceSet, evaluateApi) = extraSourceSet("evaluate")
|
||||
|
||||
dependencies {
|
||||
// for GeneratorsFileUtil
|
||||
api(kotlinStdlib())
|
||||
api(intellijDep()) { includeJars("util") }
|
||||
compile(kotlinStdlib())
|
||||
compile(intellijDep()) { includeJars("util") }
|
||||
|
||||
builtinsApi("org.jetbrains.kotlin:kotlin-stdlib:$bootstrapKotlinVersion") { isTransitive = false }
|
||||
evaluateApi(project(":core:deserialization"))
|
||||
|
||||
testImplementation(builtinsSourceSet.output)
|
||||
testImplementation(evaluateSourceSet.output)
|
||||
testCompile(builtinsSourceSet.output)
|
||||
testCompile(evaluateSourceSet.output)
|
||||
|
||||
testImplementation(projectTests(":compiler:cli"))
|
||||
testImplementation(projectTests(":idea:idea-maven"))
|
||||
testImplementation(projectTests(":j2k"))
|
||||
testImplementation(projectTests(":nj2k"))
|
||||
testImplementation(projectTests(":libraries:tools:new-project-wizard:new-project-wizard-cli"))
|
||||
testImplementation(projectTests(":idea:idea-android"))
|
||||
testImplementation(projectTests(":idea:scripting-support"))
|
||||
testImplementation(projectTests(":jps-plugin"))
|
||||
testImplementation(projectTests(":plugins:jvm-abi-gen"))
|
||||
testImplementation(projectTests(":plugins:android-extensions-compiler"))
|
||||
testImplementation(projectTests(":plugins:android-extensions-ide"))
|
||||
testImplementation(projectTests(":kotlin-annotation-processing"))
|
||||
testImplementation(projectTests(":kotlin-annotation-processing-cli"))
|
||||
testImplementation(projectTests(":kotlin-allopen-compiler-plugin"))
|
||||
testImplementation(projectTests(":kotlin-noarg-compiler-plugin"))
|
||||
testImplementation(projectTests(":kotlin-sam-with-receiver-compiler-plugin"))
|
||||
testImplementation(projectTests(":kotlinx-serialization-compiler-plugin"))
|
||||
testImplementation(projectTests(":idea:jvm-debugger:jvm-debugger-test"))
|
||||
testImplementation(projectTests(":generators:test-generator"))
|
||||
testImplementation(projectTests(":idea"))
|
||||
testCompile(projectTests(":compiler:cli"))
|
||||
testCompile(projectTests(":idea:idea-maven"))
|
||||
testCompile(projectTests(":j2k"))
|
||||
testCompile(projectTests(":nj2k"))
|
||||
testCompile(projectTests(":libraries:tools:new-project-wizard:new-project-wizard-cli"))
|
||||
testCompile(projectTests(":idea:idea-android"))
|
||||
testCompile(projectTests(":idea:scripting-support"))
|
||||
testCompile(projectTests(":jps-plugin"))
|
||||
testCompile(projectTests(":plugins:jvm-abi-gen"))
|
||||
testCompile(projectTests(":plugins:android-extensions-compiler"))
|
||||
testCompile(projectTests(":plugins:android-extensions-ide"))
|
||||
testCompile(projectTests(":kotlin-annotation-processing"))
|
||||
testCompile(projectTests(":kotlin-annotation-processing-cli"))
|
||||
testCompile(projectTests(":kotlin-allopen-compiler-plugin"))
|
||||
testCompile(projectTests(":kotlin-noarg-compiler-plugin"))
|
||||
testCompile(projectTests(":kotlin-sam-with-receiver-compiler-plugin"))
|
||||
testCompile(projectTests(":kotlinx-serialization-compiler-plugin"))
|
||||
testCompile(projectTests(":idea:jvm-debugger:jvm-debugger-test"))
|
||||
testCompile(projectTests(":generators:test-generator"))
|
||||
testCompile(projectTests(":idea"))
|
||||
testCompileOnly(project(":kotlin-reflect-api"))
|
||||
testRuntimeOnly(intellijDep()) { includeJars("idea_rt") }
|
||||
testRuntimeOnly(project(":kotlin-reflect"))
|
||||
testRuntime(intellijDep()) { includeJars("idea_rt") }
|
||||
testRuntime(project(":kotlin-reflect"))
|
||||
|
||||
if (Ide.IJ()) {
|
||||
testCompileOnly(jpsBuildTest())
|
||||
testImplementation(jpsBuildTest())
|
||||
testCompile(jpsBuildTest())
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user