From efb6938078bc9721f69a36b23705b2279d5dad88 Mon Sep 17 00:00:00 2001 From: Bas Beelen Date: Tue, 31 Jul 2018 10:20:05 +0200 Subject: [PATCH] Increase SBT stacksize (#30) --- .sbtopts | 1 + build.sbt | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 .sbtopts diff --git a/.sbtopts b/.sbtopts new file mode 100644 index 0000000..0d64da9 --- /dev/null +++ b/.sbtopts @@ -0,0 +1 @@ +-J-Xss8m diff --git a/build.sbt b/build.sbt index 73e0421..d0363df 100644 --- a/build.sbt +++ b/build.sbt @@ -44,7 +44,7 @@ lazy val commonSettings: Seq[Setting[_]] = Seq( ) ), crossScalaVersions in ThisBuild := Seq("2.11.12", "2.12.6"), - scalaVersion in ThisBuild := "2.11.12", + scalaVersion in ThisBuild := "2.12.6", scalacOptions ++= Seq(Opts.compile.deprecation, "-Xlint", "-feature"), scalacOptions ++= PartialFunction .condOpt(CrossVersion.partialVersion(scalaVersion.value)) { @@ -67,7 +67,7 @@ lazy val root = (project in file(".")) "io.circe" %% "circe-parser" % circeVersion, "io.circe" %% "circe-generic" % circeVersion, "io.circe" %% "circe-java8" % circeVersion, - "com.typesafe.akka" %% "akka-http" % "10.1.1", + "com.typesafe.akka" %% "akka-http" % "10.1.3", "de.heikoseeberger" %% "akka-http-circe" % "1.21.0", "ca.mrvisser" %% "sealerate" % "0.0.5", "ch.qos.logback" % "logback-classic" % "1.2.3",