Skip to content

Commit 7bf409c

Browse files
committedDec 20, 2020
Scala 3: Sonatype won't let us publish without a doc jar
1 parent 78de565 commit 7bf409c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed
 

‎build.sbt

+1-4
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,9 @@ lazy val parserCombinators = crossProject(JVMPlatform, JSPlatform, NativePlatfor
4141
)
4242
case _ => Seq()
4343
}),
44-
// don't run Dottydoc, it errors and isn't needed anyway
45-
Compile / doc / sources := (if (isDotty.value) Seq() else (Compile / doc/ sources).value),
46-
Compile / packageDoc / publishArtifact := !isDotty.value,
4744
Compile / doc / scalacOptions ++= {
4845
if (isDotty.value)
49-
Seq()
46+
Seq() // TODO see what flags might be desirable to pass to Scala3doc
5047
else
5148
Seq(
5249
"-diagrams",

0 commit comments

Comments
 (0)
Please sign in to comment.