mirror of https://github.com/sbt/sbt.git
Merge pull request #404 from alexarchambault/sbt-1.5.6
Update sbt to 1.5.6
This commit is contained in:
commit
f3a28b97b7
|
|
@ -99,7 +99,7 @@ lazy val `lm-coursier-shaded` = project
|
|||
"io.get-coursier" %% "coursier" % coursierVersion0,
|
||||
"io.github.alexarchambault" %% "data-class" % "0.2.5" % Provided,
|
||||
"org.scala-lang.modules" %% "scala-collection-compat" % "2.8.1",
|
||||
"org.scala-lang.modules" %% "scala-xml" % "2.1.0", // depending on that one so that it doesn't get shaded
|
||||
"org.scala-lang.modules" %% "scala-xml" % "1.3.0", // depending on that one so that it doesn't get shaded
|
||||
"org.scala-sbt" %% "librarymanagement-ivy" % {
|
||||
if (scalaBinaryVersion.value == "2.12") lmVersion
|
||||
else lm2_13Version
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
sbt.version=1.4.9
|
||||
sbt.version=1.5.6
|
||||
|
|
|
|||
Loading…
Reference in New Issue