Skip to content

Commit

Permalink
Merge pull request #525 from mrdziuban/scala-xml-v2
Browse files Browse the repository at this point in the history
Update to scala-xml 2.1.0 for all but scala 2.12
  • Loading branch information
mkurz authored Jul 6, 2022
2 parents b169657 + 658dfaa commit f16b621
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ lazy val api = crossProject(JVMPlatform, JSPlatform)
),
libraryDependencies += "org.scala-lang.modules" %%% "scala-xml" % {
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, _)) => "1.3.0"
case _ => "2.0.1"
case Some((2, 12)) => "1.3.0"
case _ => "2.1.0"
}
},
libraryDependencies += "org.scalatest" %%% "scalatest" % ScalaTestVersion % Test,
Expand Down

0 comments on commit f16b621

Please sign in to comment.