Files
kotlin-fork/repo/codebase-tests/build.gradle.kts
T
Alexander.Likhachev 6f96be0b76 [Build] Get rid of the testApiJUnit5 method
#KTI-1349 In Progress
2023-09-06 22:47:34 +00:00

31 lines
657 B
Kotlin

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("com.fasterxml.woodstox:woodstox-core:6.5.1")
testApi(platform(libs.junit.bom))
testImplementation(libs.junit4)
testImplementation("org.eclipse.jgit:org.eclipse.jgit:5.13.0.202109080827-r")
}
sourceSets {
"main" {}
"test" {
projectDefault()
}
}
projectTest() {
dependsOn(":dist")
workingDir = rootDir
}
testsJar()