File tree 1 file changed +5
-4
lines changed
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!
10
10
To depend on scala-xml in SBT, add something like this to your build.sbt:
11
11
12
12
```
13
- libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "1.0-RC2 "
13
+ libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "1.0.0-RC6 "
14
14
```
15
15
16
16
(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.)
18
19
19
20
To support multiple Scala versions:
20
21
21
22
- SBT 0.12:
22
23
```
23
24
libraryDependencies <++= (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 ")
25
26
else Seq.empty
26
27
}
27
28
```
28
29
29
30
- SBT 0.13:
30
31
```
31
32
libraryDependencies ++= (
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 ")
33
34
else Seq.empty
34
35
)
35
36
```
You can’t perform that action at this time.
0 commit comments