087555ee59
- Check list of possible owners - Check no unknown owners - Check no unowned files in repo - Check no unmatched patterns
29 lines
653 B
Kotlin
29 lines
653 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(intellijCore())
|
|
testImplementation(projectTests(":compiler:tests-common"))
|
|
|
|
testImplementation("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7")
|
|
testImplementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7")
|
|
testImplementation("com.fasterxml.woodstox:woodstox-core:6.2.4")
|
|
|
|
testImplementation("org.eclipse.jgit:org.eclipse.jgit:5.13.0.202109080827-r")
|
|
}
|
|
|
|
sourceSets {
|
|
"main" {}
|
|
"test" {
|
|
projectDefault()
|
|
}
|
|
}
|
|
|
|
projectTest() {
|
|
dependsOn(":dist")
|
|
workingDir = rootDir
|
|
}
|
|
|
|
testsJar() |