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}}" """) } } }