AMLSim / jars /junit5-r5.10.2 /junit-platform-jfr /junit-platform-jfr.gradle.kts
dingyiz's picture
Upload folder using huggingface_hub
2795186 verified
plugins {
id("junitbuild.java-library-conventions")
}
description = "JUnit Platform Flight Recorder Support"
dependencies {
api(platform(projects.junitBom))
api(projects.junitPlatformLauncher)
compileOnlyApi(libs.apiguardian)
osgiVerification(projects.junitJupiterEngine)
osgiVerification(projects.junitPlatformLauncher)
}
javaLibrary {
// --release 8 does not support jdk.jfr even though it was backported
configureRelease = false
}
tasks {
compileJava {
javaCompiler = project.javaToolchains.compilerFor {
languageVersion = JavaLanguageVersion.of(8)
}
}
compileModule {
options.release = 11
}
}