We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f17d36 commit 6ce71f8Copy full SHA for 6ce71f8
build.sbt
@@ -107,6 +107,14 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
107
)
108
},
109
110
+ // See https://github.com/sbt/sbt/issues/4995
111
+ publishArtifact in (Compile, packageDoc) := {
112
+ CrossVersion.partialVersion(scalaVersion.value) match {
113
+ // doc task broken in sbt 1.3.0-RC4 and Scala 2.12.9
114
+ case Some((2, 12)) => false
115
+ case Some((_, _)) => true
116
+ }
117
+ },
118
apiURL := Some(
119
url(s"""https://scala.github.io/scala-xml/api/${"-.*".r.replaceAllIn(version.value, "")}/""")
120
),
0 commit comments