1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: Use scala 2.11
Rely on scala 2.11 which is default in Debian Unstable and use available level
of library scalatest based on scala 2.11
Author: Frederic Bonnard <frediz@linux.vnet.ibm.com>
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/build.sbt
+++ b/build.sbt
@@ -3,7 +3,7 @@
lazy val commonSettings = Seq(
git.baseVersion := "0.1.2",
- scalaVersion := scala210Version,
+ scalaVersion := scala211Version,
crossScalaVersions := Seq(scala210Version, scala211Version),
libraryDependencies ++= Seq(junitInterface % Test, scalaCheck % Test),
bintrayOrganization := Some("sbt"),
|