6f96be0b76
#KTI-1349 In Progress
31 lines
657 B
Kotlin
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() |