From 1900238e535c8034cbb84527d14ff6005811cfcb Mon Sep 17 00:00:00 2001 From: Sadiq Ali Date: Fri, 30 Nov 2018 18:34:28 +0000 Subject: [PATCH] Upgrade to Scala 2.12 --- build.sbt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.sbt b/build.sbt index 623b984..4ecca69 100644 --- a/build.sbt +++ b/build.sbt @@ -4,18 +4,18 @@ organization := "com.josephpconley" version := "2.7.0-SNAPSHOT" -scalaVersion := "2.11.4" +scalaVersion := "2.12.7" -crossScalaVersions := Seq("2.10.4", "2.11.4") +crossScalaVersions := Seq("2.10.4", "2.11.4", "2.12.7") resolvers += "Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/" resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases" libraryDependencies ++= Seq( - "com.typesafe.play" %% "play-json" % "[2.6.0,2.6.+)", - "io.gatling" %% "jsonpath" % "0.6.4", - "org.scalatest" %% "scalatest" % "2.2.6" % "test" + "com.typesafe.play" %% "play-json" % "[2.6.0,2.6.+)", + "io.gatling" %% "jsonpath" % "0.6.8", + "org.scalatest" %% "scalatest" % "3.0.5" % "test" ) publishMavenStyle := true