mirror of
https://github.com/sbt/sbt.git
synced 2026-09-02 02:57:21 +02:00
Ignore scala-xml version mismatch in 2.13
Hope this isn't a problem downstream…
This commit is contained in:
@@ -36,6 +36,13 @@ object Settings {
|
||||
scalacOptions ++= {
|
||||
if (isAtLeastScala213.value) Seq("-Ymacro-annotations")
|
||||
else Nil
|
||||
},
|
||||
libraryDependencySchemes ++= {
|
||||
val sv = scalaVersion.value
|
||||
if (sv.startsWith("2.13."))
|
||||
Seq("org.scala-lang.modules" %% "scala-xml" % "always")
|
||||
else
|
||||
Nil
|
||||
}
|
||||
) ++ {
|
||||
val prop = sys.props.getOrElse("publish.javadoc", "").toLowerCase(Locale.ROOT)
|
||||
|
||||
Reference in New Issue
Block a user