Skip to content

Commit b9c9e91

Browse files
committed
attempt to avoid weird Javadoc heisenerror
1 parent aa38b47 commit b9c9e91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ lazy val scalaJava8Compat = (project in file("."))
125125
(sources in Compile).value.filter(_.getName.endsWith(".java"))
126126
allJavaSources.filterNot(_.getName.contains("FuturesConvertersImpl.java")) // this file triggers bugs in genjavadoc
127127
},
128-
javacOptions in JavaDoc := Seq(),
128+
javacOptions in JavaDoc := Seq("-Xdoclint:none"),
129129
artifactName in packageDoc in JavaDoc := ((sv, mod, art) => "" + mod.name + "_" + sv.binary + "-" + mod.revision + "-javadoc.jar"),
130130
libraryDependencies += compilerPlugin("com.typesafe.genjavadoc" % "genjavadoc-plugin" % "0.16" cross CrossVersion.full),
131131
scalacOptions in Compile += "-P:genjavadoc:out=" + (target.value / "java")

0 commit comments

Comments
 (0)