aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2015-07-23 09:18:15 +0200
committerJakob Odersky <jodersky@gmail.com>2015-07-23 09:18:27 +0200
commit0ced60b3a8a345b23748ceb3c70df95ccaf8afea (patch)
tree326b78b20f31fe09af4c53b5e10c110ff1921cdc /project
parentc6cb29f71ffdf0279ca7f7a840ccf37e65879c12 (diff)
downloadakka-serial-0ced60b3a8a345b23748ceb3c70df95ccaf8afea.tar.gz
akka-serial-0ced60b3a8a345b23748ceb3c70df95ccaf8afea.tar.bz2
akka-serial-0ced60b3a8a345b23748ceb3c70df95ccaf8afea.zip
upgrade scala and akkav2.2.1
Diffstat (limited to 'project')
-rw-r--r--project/Build.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/project/Build.scala b/project/Build.scala
index 17b0df0..c6b7f6b 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -7,9 +7,9 @@ import NativeKeys._
object FlowBuild extends Build {
lazy val commonSettings: Seq[Setting[_]] = Seq(
- version := "2.2.0",
- scalaVersion in ThisBuild := "2.11.6",
- crossScalaVersions in ThisBuild := Seq("2.10.5", "2.11.6"),
+ version := "2.2.1",
+ scalaVersion in ThisBuild := "2.11.7",
+ crossScalaVersions in ThisBuild := Seq("2.10.5", "2.11.7"),
organization := "com.github.jodersky",
licenses := Seq(("BSD New", url("http://opensource.org/licenses/BSD-3-Clause"))),
scalacOptions ++= Seq("-deprecation", "-unchecked", "-feature", "-target:jvm-1.7")
@@ -42,7 +42,7 @@ object FlowBuild extends Build {
javahHeaderDirectory := (baseDirectory in ThisBuild).value / "flow-native" / "src",
javahClasses := Seq("com.github.jodersky.flow.internal.NativeSerial"),
compileOrder in Compile := CompileOrder.Mixed,
- libraryDependencies += "com.typesafe.akka" %% "akka-actor" % "2.3.11"
+ libraryDependencies += "com.typesafe.akka" %% "akka-actor" % "2.3.12"
)
)