/scala-xml

The standard Scala XML library.

Primary LanguageScalaBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

scala-xml

The standard Scala XML library.

As of Scala 2.11, this library is a separate jar that can be omitted from Scala projects that do not use XML. We're also looking forward to alternative implementations!

Adding an SBT dependency

To depend on scala-xml in SBT, add something like this to your build.sbt:

libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "1.0.0-RC6"

(Assuming you're using a scalaVersion for which a scala-xml is published. The first 2.11 milestone for which this is true is 2.11.0-M4. The current milestone is 2.11.0-M6.)

To support multiple Scala versions:

  • SBT 0.12:
libraryDependencies <++= (scalaVersion) { sVer =>
  if (sVer startsWith "2.11") Seq("org.scala-lang.modules" %% "scala-xml" % "1.0.0-RC6")
  else Seq.empty
}
  • SBT 0.13:
libraryDependencies ++= (
  if (scalaVersion.value startsWith "2.11") Seq("org.scala-lang.modules" %% "scala-xml" % "1.0.0-RC6")
  else Seq.empty
)