6b19b8b9d0
^KT-63419 In Progress
66 lines
2.1 KiB
Kotlin
66 lines
2.1 KiB
Kotlin
import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":core:descriptors.jvm"))
|
|
implementation(project(":compiler:frontend"))
|
|
implementation(project(":compiler:frontend.java"))
|
|
implementation(project(":analysis:analysis-api-impl-base"))
|
|
implementation(project(":analysis:analysis-internal-utils"))
|
|
implementation(project(":analysis:kt-references"))
|
|
implementation(project(":analysis:kt-references:kt-references-fe10"))
|
|
|
|
implementation(project(":compiler:backend"))
|
|
implementation(project(":compiler:backend-common"))
|
|
implementation(project(":compiler:backend.common.jvm"))
|
|
implementation(project(":compiler:backend.jvm"))
|
|
implementation(project(":compiler:backend.jvm.entrypoint"))
|
|
|
|
testApi(platform(libs.junit.bom))
|
|
testImplementation(libs.junit.jupiter.api)
|
|
testRuntimeOnly(libs.junit.jupiter.engine)
|
|
testImplementation(project(":analysis:analysis-api-providers"))
|
|
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(projectTests(":analysis:analysis-api-impl-base"))
|
|
testImplementation(projectTests(":analysis:analysis-test-framework"))
|
|
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {
|
|
projectDefault()
|
|
generatedTestDir()
|
|
}
|
|
}
|
|
|
|
tasks.withType<KotlinJvmCompile>().configureEach {
|
|
compilerOptions {
|
|
optIn.addAll(
|
|
listOf(
|
|
"kotlin.RequiresOptIn",
|
|
"org.jetbrains.kotlin.analysis.api.KtAnalysisApiInternals"
|
|
)
|
|
)
|
|
freeCompilerArgs.add("-Xcontext-receivers")
|
|
}
|
|
}
|
|
|
|
|
|
projectTest(jUnitMode = JUnitMode.JUnit5) {
|
|
dependsOn(":dist")
|
|
workingDir = rootDir
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
testsJar()
|