File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -10,26 +10,27 @@ We're also looking forward to alternative implementations!
1010To depend on scala-xml in SBT, add something like this to your build.sbt:
1111
1212```
13- libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "1.0-RC2 "
13+ libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "1.0.0-RC6 "
1414```
1515
1616(Assuming you're using a ` scalaVersion ` for which a scala-xml is published.
17- The first 2.11 milestone for which this is true is 2.11.0-M4.)
17+ The first 2.11 milestone for which this is true is 2.11.0-M4.
18+ The current milestone is 2.11.0-M6.)
1819
1920To support multiple Scala versions:
2021
2122 - SBT 0.12:
2223```
2324libraryDependencies <++= (scalaVersion) { sVer =>
24- if (sVer startsWith "2.11") Seq("org.scala-lang.modules" %% "scala-xml" % "1.0-RC2 ")
25+ if (sVer startsWith "2.11") Seq("org.scala-lang.modules" %% "scala-xml" % "1.0.0-RC6 ")
2526 else Seq.empty
2627}
2728```
2829
2930 - SBT 0.13:
3031```
3132libraryDependencies ++= (
32- if (scalaVersion.value startsWith "2.11") Seq("org.scala-lang.modules" %% "scala-xml" % "1.0-RC2 ")
33+ if (scalaVersion.value startsWith "2.11") Seq("org.scala-lang.modules" %% "scala-xml" % "1.0.0-RC6 ")
3334 else Seq.empty
3435)
3536```
You can’t perform that action at this time.
0 commit comments