Skip to content

Commit c4dd83a

Browse files
authored
Merge pull request #467 from SethTisue/disable-dottydoc
disable Dottydoc, upgrade sbt to 1.4.3
2 parents 8d224b4 + 84fa0de commit c4dd83a

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Diff for: build.sbt

+4
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
4040

4141
scalacOptions in Test += "-Xxml:coalescing",
4242

43+
// don't run Dottydoc, it errors and isn't needed anyway.
44+
// but we leave `publishArtifact` set to true, otherwise Sonatype won't let us publish
45+
Compile / doc / sources := (if (isDotty.value) Seq() else (Compile / doc/ sources).value),
46+
4347
scalaModuleMimaPreviousVersion := {
4448
if (isDotty.value) None // No such release yet
4549
// else if (System.getenv("SCALAJS_VERSION") == "1.0.1") None

Diff for: project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.3.13
1+
sbt.version=1.4.3

0 commit comments

Comments
 (0)