summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x.travis.yml3
-rw-r--r--project/build.scala8
2 files changed, 7 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 54089b2..2a6ad42 100755
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,6 +1,7 @@
language: scala
scala:
- - 2.10.3
+ - 2.10.4
+ - 2.11.1
jdk:
- openjdk7
- oraclejdk7
diff --git a/project/build.scala b/project/build.scala
index 6cf1fd2..a4893e0 100644
--- a/project/build.scala
+++ b/project/build.scala
@@ -29,21 +29,23 @@ object CoreBuild extends Build {
publishMavenStyle := true,
publishTo := Some("Sonatype" at "https://oss.sonatype.org/service/local/staging/deploy/maven2"),
resolvers ++= Seq(DefaultMavenRepository),
- scalaVersion := "2.10.3",
+ scalaVersion := "2.11.1",
+ crossScalaVersions := Seq("2.11.1", "2.10.4"),
+ crossVersion := CrossVersion.binary,
version := "0.27.3"
)
).aggregate(core, cli)
lazy val core: Project = Project("core", file("core"),
settings = (root.settings: Seq[sbt.Def.Setting[_]]) ++ Seq(
- libraryDependencies ++= Seq("org.specs2" %% "specs2" % "2.3.7" % "test"),
+ libraryDependencies ++= Seq("org.specs2" %% "specs2" % "2.3.12" % "test"),
name := "stringmetric-core"
)
)
lazy val cli: Project = Project("cli", file("cli"),
settings = (root.settings: Seq[sbt.Def.Setting[_]]) ++ Seq(
- libraryDependencies ++= Seq("org.specs2" %% "specs2" % "2.3.7" % "test"),
+ libraryDependencies ++= Seq("org.specs2" %% "specs2" % "2.3.12" % "test"),
name := "stringmetric-cli"
)
).dependsOn(core)