AMLSim / jars /junit5-r5.10.2 /junit-platform-launcher /junit-platform-launcher.gradle.kts
dingyiz's picture
Upload folder using huggingface_hub
2795186 verified
plugins {
id("junitbuild.java-library-conventions")
`java-test-fixtures`
}
description = "JUnit Platform Launcher"
dependencies {
api(platform(projects.junitBom))
api(projects.junitPlatformEngine)
compileOnlyApi(libs.apiguardian)
osgiVerification(projects.junitJupiterEngine)
}
tasks {
jar {
bundle {
val version = project.version
bnd("""
Provide-Capability:\
org.junit.platform.launcher;\
org.junit.platform.launcher='junit-platform-launcher';\
version:Version="${'$'}{version_cleanup;${version}}"
""")
}
}
}