blob: cad72ef00ab9d329aa2186b6f9a5fc2300b93794 [file] [log] [blame] [edit]
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
testImplementation(intellijCore())
testImplementation(projectTests(":compiler:tests-common"))
testImplementation(libs.jackson.dataformat.xml)
testImplementation(libs.jackson.module.kotlin)
testImplementation(libs.woodstox.core)
testApi(platform(libs.junit.bom))
testImplementation(libs.junit4)
testImplementation(libs.jgit)
}
sourceSets {
"main" {}
"test" {
projectDefault()
}
}
projectTest {
dependsOn(":dist")
workingDir = rootDir
javaLauncher.set(getToolchainLauncherFor(JdkMajorVersion.JDK_17_0))
jvmArgs("--add-opens=java.base/java.io=ALL-UNNAMED")
}
testsJar()