We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bda633d commit 3433b1bCopy full SHA for 3433b1b
1 file changed
buildSrc/src/main/kotlin/ai.smoke-test.gradle.kts
@@ -87,6 +87,21 @@ configurations.all {
87
}
88
89
tasks {
90
+ // FIXME (trask) copy-pasted from ai.java-conventions.gradle
91
+ named<Javadoc>("javadoc") {
92
+ with(options as StandardJavadocDocletOptions) {
93
+ source = "8"
94
+ encoding = "UTF-8"
95
+ docEncoding = "UTF-8"
96
+ charSet = "UTF-8"
97
+ breakIterator(true)
98
+
99
+ addStringOption("Xdoclint:none", "-quiet")
100
+ // non-standard option to fail on warnings, see https://bugs.openjdk.java.net/browse/JDK-8200363
101
+ addStringOption("Xwerror", "-quiet")
102
+ }
103
104
105
task<Test>("smokeTest") {
106
useJUnitPlatform()
107
0 commit comments