Skip to content

Commit

Permalink
Merge pull request #441 from tgodzik/fix-release
Browse files Browse the repository at this point in the history
Fix release issues with scala3Doc
  • Loading branch information
tgodzik authored Dec 28, 2020
2 parents edf8764 + 5c4af3f commit e27c078
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,14 @@ lazy val interfaces = project
libraryDependencies ++= List(
"io.get-coursier" % "interface" % V.coursier
),
// @note needed to deal with issues with dottyDoc
sources in (Compile, doc) := {
if (isScala3.value) {
Seq.empty
} else {
(sources in (Compile, doc)).value
}
},
crossVersion := CrossVersion.disabled,
javacOptions in (Compile / doc) ++= List(
"-tag",
Expand Down

0 comments on commit e27c078

Please sign in to comment.