Files
kotlin-fork/repo/codebase-tests/build.gradle.kts
T
Bogdan Mukvich dbb5072a26 [Build] Update dependencies
Fix some reports from "Show Vulnerable Dependencies"

^KTI-1342
2023-08-25 14:10:37 +00:00

29 lines
583 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")
testImplementation("org.eclipse.jgit:org.eclipse.jgit:5.13.0.202109080827-r")
}
sourceSets {
"main" {}
"test" {
projectDefault()
}
}
projectTest() {
dependsOn(":dist")
workingDir = rootDir
}
testsJar()