diff --git a/build.sbt b/build.sbt index bbe6f625a..d7a612007 100644 --- a/build.sbt +++ b/build.sbt @@ -40,6 +40,10 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform) scalacOptions in Test += "-Xxml:coalescing", + // don't run Dottydoc, it errors and isn't needed anyway. + // but we leave `publishArtifact` set to true, otherwise Sonatype won't let us publish + Compile / doc / sources := (if (isDotty.value) Seq() else (Compile / doc/ sources).value), + scalaModuleMimaPreviousVersion := { if (isDotty.value) None // No such release yet // else if (System.getenv("SCALAJS_VERSION") == "1.0.1") None diff --git a/project/build.properties b/project/build.properties index 0837f7a13..947bdd302 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.3.13 +sbt.version=1.4.3