Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 5 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -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: _*).
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version := "0.3.1"
version := "0.3.2-SNAPSHOT"