Skip to content

Commit f3effa9

Browse files
committed
disable dottydoc
it is currently broken, with errors such as "class scala.swing.Font cannot be unpickled because no class file was found" ; it's a known problem with package objects AFAIK
1 parent 4e8f85e commit f3effa9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build.sbt

+4-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ lazy val swing = project.in(file("."))
2727
case Some((3, _)) => sourceDir / "scala-2.13+" // Dotty
2828
case _ => sourceDir / "scala-2.13-"
2929
}
30-
}
30+
},
31+
sources in (Compile, doc) := {
32+
if (isDotty.value) Nil else (sources in (Compile, doc)).value // dottydoc is currently broken
33+
},
3134
)
3235

3336
lazy val examples = project.in(file("examples"))

0 commit comments

Comments
 (0)