-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathjupiter-tests.gradle.kts
41 lines (38 loc) · 1.28 KB
/
jupiter-tests.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import org.gradle.api.tasks.PathSensitivity.RELATIVE
plugins {
id("junitbuild.code-generator")
id("junitbuild.kotlin-library-conventions")
id("junitbuild.junit4-compatibility")
id("junitbuild.testing-conventions")
groovy
}
dependencies {
testImplementation(projects.junitJupiter)
testImplementation(projects.junitJupiterMigrationsupport)
testImplementation(projects.junitPlatformLauncher)
testImplementation(projects.junitPlatformSuiteEngine)
testImplementation(projects.junitPlatformTestkit)
testImplementation(testFixtures(projects.junitPlatformCommons))
testImplementation(kotlin("stdlib"))
testImplementation(libs.jimfs)
testImplementation(libs.junit4)
testImplementation(libs.kotlinx.coroutines)
testImplementation(libs.groovy4)
testImplementation(libs.memoryfilesystem)
testImplementation(testFixtures(projects.junitJupiterApi))
testImplementation(testFixtures(projects.junitJupiterEngine))
testImplementation(testFixtures(projects.junitPlatformLauncher))
testImplementation(testFixtures(projects.junitPlatformReporting))
implementation(libs.mustache)
}
tasks {
test {
inputs.dir("src/test/resources").withPathSensitivity(RELATIVE)
systemProperty("developmentVersion", version)
}
test_4_12 {
filter {
includeTestsMatching("org.junit.jupiter.migrationsupport.*")
}
}
}