d2aae67e03
Use dependency helper function that chooses whether to take them from the bootstrap repository or from a configuration of kotlin-test KT-61969
49 lines
2.1 KiB
Kotlin
49 lines
2.1 KiB
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:psi"))
|
|
api(project(":analysis:analysis-api"))
|
|
api(project(":analysis:analysis-api-impl-barebone"))
|
|
api(project(":analysis:kt-references"))
|
|
api(project(":compiler:resolution.common.jvm"))
|
|
implementation(project(":compiler:backend-common"))
|
|
api(intellijCore())
|
|
implementation(project(":analysis:analysis-internal-utils"))
|
|
|
|
testApi(platform(libs.junit.bom))
|
|
testImplementation(libs.junit.jupiter.api)
|
|
testRuntimeOnly(libs.junit.jupiter.engine)
|
|
testImplementation(kotlinTest("junit"))
|
|
testImplementation(project(":analysis:analysis-api"))
|
|
testImplementation(project(":analysis:analysis-api-standalone:analysis-api-standalone-base"))
|
|
testImplementation(projectTests(":compiler:tests-common"))
|
|
testApi(projectTests(":compiler:test-infrastructure-utils"))
|
|
testApi(projectTests(":compiler:test-infrastructure"))
|
|
testImplementation(projectTests(":compiler:tests-common-new"))
|
|
testImplementation(projectTests(":analysis:analysis-api-impl-barebone"))
|
|
testImplementation(project(":analysis:symbol-light-classes"))
|
|
testImplementation(projectTests(":analysis:decompiled:decompiler-to-file-stubs"))
|
|
testImplementation(project(":analysis:decompiled:decompiler-to-file-stubs"))
|
|
testImplementation(project(":analysis:decompiled:light-classes-for-decompiled"))
|
|
testImplementation(project(":analysis:decompiled:decompiler-to-psi"))
|
|
testImplementation(project(":analysis:decompiled:decompiler-native"))
|
|
testImplementation(projectTests(":analysis:analysis-test-framework"))
|
|
testImplementation(commonDependency("org.jetbrains.kotlin:kotlin-reflect")) { isTransitive = false }
|
|
testImplementation(toolsJar())
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
|
|
kotlinOptions.freeCompilerArgs += "-Xcontext-receivers"
|
|
kotlinOptions.freeCompilerArgs += "-opt-in=org.jetbrains.kotlin.analysis.api.KtAnalysisApiInternals"
|
|
}
|
|
|
|
testsJar()
|