Skip to content

Commit f0bca8a

Browse files
committed
Update version to 0.3.1
1 parent ab7f63f commit f0bca8a

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The goal of this project is to produce bootable, Scala-based Spring Boot applica
2323
##### build.sbt
2424

2525
````scala
26-
libraryDependencies ++= "com.github.scalaspring" %% "akka-spring-boot" % "0.2.1"
26+
libraryDependencies ++= "com.github.scalaspring" %% "akka-spring-boot" % "0.3.1"
2727
````
2828

2929
##### Create an Actor and a Spring configuration
@@ -56,6 +56,8 @@ class EchoConfiguration extends ActorSystemConfiguration {
5656
* Extend the `ActorSystemConfiguration` trait, which includes the helpful `actorOf()` methods
5757
* Import the `AkkaAutoConfiguration` configuration, which creates and manages the default actor system
5858
* Note that the `@ComponentScan` annotation will cause the EchoActor class to get picked up as a bean.
59+
* Configuration Properties
60+
* Use the `akka.actorSystem.lifecycle.phase` configuration property to control when the underlying `ActorSystem` is terminated. The default value is -10 to ensure its termination after any default beans.
5961

6062
##### Test the Configuration
6163

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ lazy val `akka-spring-boot` = (project in file(".")).
3333
// Test dependencies
3434
libraryDependencies ++= Seq(
3535
"org.scalatest" %% "scalatest" % "2.2.6",
36-
"com.github.scalaspring" %% "scalatest-spring" % "0.3.1-SNAPSHOT",
36+
"com.github.scalaspring" %% "scalatest-spring" % "0.3.1",
3737
"org.springframework" % "spring-test" % springVersion,
3838
"com.typesafe.akka" %% "akka-testkit" % akkaVersion
3939
).map { _ % "test" },

version.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version := "0.3.1-SNAPSHOT"
1+
version := "0.3.1"

0 commit comments

Comments
 (0)