We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5da1c40 commit aa121eeCopy full SHA for aa121ee
junit-jupiter-params/junit-jupiter-params.gradle.kts
@@ -1,4 +1,6 @@
1
import junitbuild.extensions.javaModuleName
2
+import net.ltgt.gradle.errorprone.errorprone
3
+import net.ltgt.gradle.nullaway.nullaway
4
5
plugins {
6
id("junitbuild.java-nullability-conventions")
@@ -56,6 +58,14 @@ tasks {
56
58
"--add-reads", "${javaModuleName}=univocity.parsers"
57
59
))
60
}
61
+ compileJmhJava {
62
+ options.compilerArgs.add("-Xlint:-processing")
63
+ options.errorprone.nullaway {
64
+ customInitializerAnnotations.add(
65
+ "org.openjdk.jmh.annotations.Setup",
66
+ )
67
+ }
68
69
javadoc {
70
(options as StandardJavadocDocletOptions).apply {
71
addStringOption("-add-modules", "univocity.parsers")
0 commit comments