Skip to content

Commit

Permalink
Scala version and dependency update
Browse files Browse the repository at this point in the history
  • Loading branch information
rklaehn committed Nov 13, 2017
1 parent aff7e33 commit 1805c38
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions build.sbt
Expand Up @@ -2,15 +2,15 @@ import ReleaseTransformations._

lazy val summarizerSettings = Seq(
organization := "com.rklaehn",
scalaVersion := "2.11.7",
crossScalaVersions := Seq("2.10.5", "2.11.7"),
scalaVersion := "2.12.4",
crossScalaVersions := Seq("2.12.4", "2.11.11"),
libraryDependencies ++= Seq(
"com.google.guava" % "guava" % "18.0",
"org.scalatest" %% "scalatest" % "2.2.6" % "test",
"org.scalacheck" %% "scalacheck" % "1.11.6" % "test",
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
"org.scalacheck" %% "scalacheck" % "1.13.5" % "test",

// thyme
"ichi.bench" % "thyme" % "0.1.1" % "test" from "https://github.com/Ichoran/thyme/raw/9ff531411e10c698855ade2e5bde77791dd0869a/Thyme.jar"
"com.github.ichoran" %% "thyme" % "0.1.2-SNAPSHOT" % "test"
),
scalacOptions ++= Seq(
"-deprecation",
Expand Down
6 changes: 3 additions & 3 deletions project/plugins.sbt
@@ -1,4 +1,4 @@
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "0.5.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.3.3")
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.3")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "1.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")

0 comments on commit 1805c38

Please sign in to comment.