Move code conformance tests from compiler tests

#KTI-962
This commit is contained in:
Bogdan Mukvich
2022-11-03 11:49:51 +01:00
committed by Space Team
parent dec0946896
commit 080b034950
7 changed files with 37 additions and 19 deletions
+27
View File
@@ -0,0 +1,27 @@
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")
}
sourceSets {
"main" {}
"test" {
projectDefault()
}
}
projectTest() {
dependsOn(":dist")
workingDir = rootDir
}
testsJar()