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