This repository was archived by the owner on Apr 18, 2019. It is now read-only.
File tree 3 files changed +12
-12
lines changed
3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ libraryDependencies := {
19
19
// if scala 2.11+ is used, add dependency on scala-xml module
20
20
case Some ((2 , scalaMajor)) if scalaMajor >= 11 =>
21
21
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 " ,
24
24
" org.scala-lang.modules" %% " scala-swing" % " 1.0.1" )
25
25
case _ =>
26
26
// 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
38
38
<dependency >
39
39
<groupId >org.scala-lang.modules</groupId >
40
40
<artifactId >scala-xml_${scalaBinaryVersion}</artifactId >
41
- <version >1.0.1 </version >
41
+ <version >1.0.3 </version >
42
42
</dependency >
43
43
<dependency >
44
44
<groupId >org.scala-lang.modules</groupId >
45
45
<artifactId >scala-parser-combinators_${scalaBinaryVersion}</artifactId >
46
- <version >1.0.1 </version >
46
+ <version >1.0.3 </version >
47
47
</dependency >
48
48
<dependency >
49
49
<groupId >org.scala-lang.modules</groupId >
Original file line number Diff line number Diff line change 13
13
<activeByDefault >true</activeByDefault >
14
14
</activation >
15
15
<properties >
16
- <scalaVersion >2.11.0 </scalaVersion >
16
+ <scalaVersion >2.11.5 </scalaVersion >
17
17
<!-- change to "2.11" once Scala 2.11.0 final is out -->
18
18
<scalaBinaryVersion >2.11</scalaBinaryVersion >
19
19
</properties >
26
26
<dependency >
27
27
<groupId >org.scala-lang.modules</groupId >
28
28
<artifactId >scala-xml_${scalaBinaryVersion}</artifactId >
29
- <version >1.0.1 </version >
29
+ <version >1.0.3 </version >
30
30
</dependency >
31
31
<dependency >
32
32
<groupId >org.scala-lang.modules</groupId >
33
33
<artifactId >scala-parser-combinators_${scalaBinaryVersion}</artifactId >
34
- <version >1.0.1 </version >
34
+ <version >1.0.3 </version >
35
35
</dependency >
36
36
<dependency >
37
37
<groupId >org.scala-lang.modules</groupId >
43
43
<profile >
44
44
<id >scala-2.10</id >
45
45
<properties >
46
- <scalaVersion >2.10.3 </scalaVersion >
46
+ <scalaVersion >2.10.4 </scalaVersion >
47
47
<scalaBinaryVersion >2.10</scalaBinaryVersion >
48
48
</properties >
49
49
<dependencies >
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ organization := "sample"
4
4
5
5
version := " 1.0"
6
6
7
- crossScalaVersions := Seq (" 2.11.0 " , " 2.10.3 " )
7
+ crossScalaVersions := Seq (" 2.11.5 " , " 2.10.4 " )
8
8
9
- scalaVersion := " 2.11.0 "
9
+ scalaVersion := " 2.11.5 "
10
10
11
11
// add scala-xml dependency when needed (for Scala 2.11 and newer) in a robust way
12
12
// this mechanism supports cross-version publishing
@@ -15,8 +15,8 @@ libraryDependencies := {
15
15
// if scala 2.11+ is used, add dependency on scala-xml module
16
16
case Some ((2 , scalaMajor)) if scalaMajor >= 11 =>
17
17
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 " ,
20
20
" org.scala-lang.modules" %% " scala-swing" % " 1.0.1" )
21
21
case _ =>
22
22
// or just libraryDependencies.value if you don't depend on scala-swing
You can’t perform that action at this time.
0 commit comments