@@ -8,14 +8,12 @@ scalaVersion := "2.10.3"
8
8
9
9
scalacOptions := Seq (" -unchecked" , " -deprecation" , " -feature" , " -encoding" , " utf8" )
10
10
11
- crossScalaVersions := Seq (" 2.9.2" , " 2.10.0" )
12
11
13
12
libraryDependencies ++= Seq (
14
13
" commons-io" % " commons-io" % " 2.4" ,
15
- " org.scala-lang" % " scala-compiler" % " 2.10.3" % " provided" ,
16
- " org.scalatest" %% " scalatest" % " 2.0" % " test" ,
17
- " org.mockito" % " mockito-all" % " 1.9.5" % " test" ,
18
- " org.specs2" %% " specs2" % " 2.3.7" % " test"
14
+ " org.scala-lang" % " scala-compiler" % " 2.10.3" % " provided" ,
15
+ " org.scalatest" %% " scalatest" % " 2.1.0" % " test" ,
16
+ " org.mockito" % " mockito-all" % " 1.9.5" % " test"
19
17
)
20
18
21
19
publishMavenStyle := true
@@ -30,6 +28,19 @@ pomIncludeRepository := {
30
28
31
29
javacOptions ++= Seq (" -source" , " 1.6" , " -target" , " 1.6" )
32
30
31
+ scalaVersion := " 2.10.3"
32
+
33
+ // crossScalaVersions := Seq("2.10.3", "2.11.0-RC1")
34
+ //
35
+ // libraryDependencies := {
36
+ // CrossVersion.partialVersion(scalaVersion.value) match {
37
+ // case Some((2, scalaMajor)) if scalaMajor >= 11 =>
38
+ // libraryDependencies.value :+ "org.scala-lang.modules" %% "scala-xml" % "1.0.0"
39
+ // case _ =>
40
+ // libraryDependencies.value
41
+ // }
42
+ // }
43
+
33
44
publishTo <<= version {
34
45
(v : String ) =>
35
46
val nexus = " https://oss.sonatype.org/"
0 commit comments