diff --git a/README.md b/README.md index cfe5920..f63ca71 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ The goal of this project is to produce bootable, Scala-based Spring Boot applica ##### build.sbt ````scala -libraryDependencies ++= "com.github.scalaspring" %% "akka-spring-boot" % "0.3.1" +libraryDependencies ++= "com.github.scalaspring" %% "akka-spring-boot" % "0.3.2-SNAPSHOT" ```` ##### Create an Actor and a Spring configuration diff --git a/build.sbt b/build.sbt index 98dbbd7..3a2e07f 100644 --- a/build.sbt +++ b/build.sbt @@ -1,9 +1,9 @@ import sbt.Keys._ // Common dependency versions -val akkaVersion = "2.4.2" -val springVersion = "4.2.5.RELEASE" -val springBootVersion = "1.3.3.RELEASE" +val akkaVersion = "2.4.16" +val springVersion = "4.3.6.RELEASE" +val springBootVersion = "1.4.4.RELEASE" lazy val `akka-spring-boot` = (project in file(".")). settings(net.virtualvoid.sbt.graph.Plugin.graphSettings: _*). @@ -32,9 +32,10 @@ lazy val `akka-spring-boot` = (project in file(".")). ).map { _ % "runtime" }, // Test dependencies libraryDependencies ++= Seq( - "org.scalatest" %% "scalatest" % "2.2.6", + "org.scalatest" %% "scalatest" % "3.0.1", "com.github.scalaspring" %% "scalatest-spring" % "0.3.1", "org.springframework" % "spring-test" % springVersion, + "org.springframework.boot" % "spring-boot-starter-test" % springBootVersion, "com.typesafe.akka" %% "akka-testkit" % akkaVersion ).map { _ % "test" }, // Publishing settings diff --git a/version.sbt b/version.sbt index 8ec80ca..f9511d2 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version := "0.3.1" \ No newline at end of file +version := "0.3.2-SNAPSHOT" \ No newline at end of file