From d0737edce318e30f84c155c39241aa6bbc273988 Mon Sep 17 00:00:00 2001 From: xuwei-k <6b656e6a69@gmail.com> Date: Tue, 20 Jan 2015 01:23:54 +0900 Subject: [PATCH] update latest version --- README.md | 8 ++++---- maven-sample/pom.xml | 8 ++++---- sbt-sample/build.sbt | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index de1891f..c86b51d 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,8 @@ libraryDependencies := { // if scala 2.11+ is used, add dependency on scala-xml module case Some((2, scalaMajor)) if scalaMajor >= 11 => libraryDependencies.value ++ Seq( - "org.scala-lang.modules" %% "scala-xml" % "1.0.1", - "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.1", + "org.scala-lang.modules" %% "scala-xml" % "1.0.3", + "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.3", "org.scala-lang.modules" %% "scala-swing" % "1.0.1") case _ => // or just libraryDependencies.value if you don't depend on scala-swing @@ -38,12 +38,12 @@ This to depend on scala-xml module with assumption that you have `scalaBinaryVer org.scala-lang.modules scala-xml_${scalaBinaryVersion} - 1.0.1 + 1.0.3 org.scala-lang.modules scala-parser-combinators_${scalaBinaryVersion} - 1.0.1 + 1.0.3 org.scala-lang.modules diff --git a/maven-sample/pom.xml b/maven-sample/pom.xml index 85792ca..6ff3139 100644 --- a/maven-sample/pom.xml +++ b/maven-sample/pom.xml @@ -13,7 +13,7 @@ true - 2.11.0 + 2.11.5 2.11 @@ -26,12 +26,12 @@ org.scala-lang.modules scala-xml_${scalaBinaryVersion} - 1.0.1 + 1.0.3 org.scala-lang.modules scala-parser-combinators_${scalaBinaryVersion} - 1.0.1 + 1.0.3 org.scala-lang.modules @@ -43,7 +43,7 @@ scala-2.10 - 2.10.3 + 2.10.4 2.10 diff --git a/sbt-sample/build.sbt b/sbt-sample/build.sbt index c9e2ff0..8d42228 100644 --- a/sbt-sample/build.sbt +++ b/sbt-sample/build.sbt @@ -4,9 +4,9 @@ organization := "sample" version := "1.0" -crossScalaVersions := Seq("2.11.0", "2.10.3") +crossScalaVersions := Seq("2.11.5", "2.10.4") -scalaVersion := "2.11.0" +scalaVersion := "2.11.5" // add scala-xml dependency when needed (for Scala 2.11 and newer) in a robust way // this mechanism supports cross-version publishing @@ -15,8 +15,8 @@ libraryDependencies := { // if scala 2.11+ is used, add dependency on scala-xml module case Some((2, scalaMajor)) if scalaMajor >= 11 => libraryDependencies.value ++ Seq( - "org.scala-lang.modules" %% "scala-xml" % "1.0.1", - "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.1", + "org.scala-lang.modules" %% "scala-xml" % "1.0.3", + "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.3", "org.scala-lang.modules" %% "scala-swing" % "1.0.1") case _ => // or just libraryDependencies.value if you don't depend on scala-swing