This repository was archived by the owner on Apr 18, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ libraryDependencies := {
1919 // if scala 2.11+ is used, add dependency on scala-xml module
2020 case Some ((2 , scalaMajor)) if scalaMajor >= 11 =>
2121 libraryDependencies.value ++ Seq (
22- " org.scala-lang.modules" %% " scala-xml" % " 1.0.1 " ,
23- " org.scala-lang.modules" %% " scala-parser-combinators" % " 1.0.1 " ,
22+ " org.scala-lang.modules" %% " scala-xml" % " 1.0.3 " ,
23+ " org.scala-lang.modules" %% " scala-parser-combinators" % " 1.0.3 " ,
2424 " org.scala-lang.modules" %% " scala-swing" % " 1.0.1" )
2525 case _ =>
2626 // 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
3838<dependency >
3939 <groupId >org.scala-lang.modules</groupId >
4040 <artifactId >scala-xml_${scalaBinaryVersion}</artifactId >
41- <version >1.0.1 </version >
41+ <version >1.0.3 </version >
4242</dependency >
4343<dependency >
4444 <groupId >org.scala-lang.modules</groupId >
4545 <artifactId >scala-parser-combinators_${scalaBinaryVersion}</artifactId >
46- <version >1.0.1 </version >
46+ <version >1.0.3 </version >
4747</dependency >
4848<dependency >
4949 <groupId >org.scala-lang.modules</groupId >
Original file line number Diff line number Diff line change 1313 <activeByDefault >true</activeByDefault >
1414 </activation >
1515 <properties >
16- <scalaVersion >2.11.0 </scalaVersion >
16+ <scalaVersion >2.11.5 </scalaVersion >
1717 <!-- change to "2.11" once Scala 2.11.0 final is out -->
1818 <scalaBinaryVersion >2.11</scalaBinaryVersion >
1919 </properties >
2626 <dependency >
2727 <groupId >org.scala-lang.modules</groupId >
2828 <artifactId >scala-xml_${scalaBinaryVersion}</artifactId >
29- <version >1.0.1 </version >
29+ <version >1.0.3 </version >
3030 </dependency >
3131 <dependency >
3232 <groupId >org.scala-lang.modules</groupId >
3333 <artifactId >scala-parser-combinators_${scalaBinaryVersion}</artifactId >
34- <version >1.0.1 </version >
34+ <version >1.0.3 </version >
3535 </dependency >
3636 <dependency >
3737 <groupId >org.scala-lang.modules</groupId >
4343 <profile >
4444 <id >scala-2.10</id >
4545 <properties >
46- <scalaVersion >2.10.3 </scalaVersion >
46+ <scalaVersion >2.10.4 </scalaVersion >
4747 <scalaBinaryVersion >2.10</scalaBinaryVersion >
4848 </properties >
4949 <dependencies >
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ organization := "sample"
44
55version := " 1.0"
66
7- crossScalaVersions := Seq (" 2.11.0 " , " 2.10.3 " )
7+ crossScalaVersions := Seq (" 2.11.5 " , " 2.10.4 " )
88
9- scalaVersion := " 2.11.0 "
9+ scalaVersion := " 2.11.5 "
1010
1111// add scala-xml dependency when needed (for Scala 2.11 and newer) in a robust way
1212// this mechanism supports cross-version publishing
@@ -15,8 +15,8 @@ libraryDependencies := {
1515 // if scala 2.11+ is used, add dependency on scala-xml module
1616 case Some ((2 , scalaMajor)) if scalaMajor >= 11 =>
1717 libraryDependencies.value ++ Seq (
18- " org.scala-lang.modules" %% " scala-xml" % " 1.0.1 " ,
19- " org.scala-lang.modules" %% " scala-parser-combinators" % " 1.0.1 " ,
18+ " org.scala-lang.modules" %% " scala-xml" % " 1.0.3 " ,
19+ " org.scala-lang.modules" %% " scala-parser-combinators" % " 1.0.3 " ,
2020 " org.scala-lang.modules" %% " scala-swing" % " 1.0.1" )
2121 case _ =>
2222 // or just libraryDependencies.value if you don't depend on scala-swing
You can’t perform that action at this time.
0 commit comments