File size: 359 Bytes
2795186 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
plugins {
id("junitbuild.java-library-conventions")
}
description = "JUnit Platform Test Kit"
dependencies {
api(platform(projects.junitBom))
api(libs.assertj)
api(libs.opentest4j)
api(projects.junitPlatformLauncher)
compileOnlyApi(libs.apiguardian)
osgiVerification(projects.junitJupiterEngine)
osgiVerification(projects.junitPlatformLauncher)
}
|