blob: 20b232143180775967431da124b554e6a6f50561 [file] [log] [blame]
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
testApi(project(":core:util.runtime"))
testApi(projectTests(":compiler:test-infrastructure-utils"))
testApi(kotlinStdlib())
testApi(commonDependency("junit:junit"))
testApiJUnit5()
testApi(project(":generators"))
testImplementation(commonDependency("org.jetbrains.kotlin:kotlin-reflect")) { isTransitive = false }
testRuntimeOnly(project(":core:descriptors.runtime"))
}
sourceSets {
"main" { }
"test" { projectDefault() }
}
testsJar {}