Skip to content

Commit

Permalink
bump: Akka 2.8.0 (#807)
Browse files Browse the repository at this point in the history
  • Loading branch information
johanandren committed Mar 17, 2023
1 parent f4cfbaf commit 9323332
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Expand Up @@ -19,7 +19,7 @@ object Dependencies {

object Versions {
// FIXME released version/milestone
val akka = sys.props.getOrElse("build.akka.version", "2.8.0-M4")
val akka = sys.props.getOrElse("build.akka.version", "2.8.0")
val akkaPersistenceCassandra = "1.1.0"
val akkaPersistenceJdbc = "5.2.0"
// FIXME non-milestone
Expand Down
2 changes: 1 addition & 1 deletion samples/replicated/shopping-cart-service-java/pom.xml
Expand Up @@ -36,7 +36,7 @@
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-bom_${scala.binary.version}</artifactId>
<version>2.8.0-M4</version>
<version>2.8.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion samples/replicated/shopping-cart-service-scala/build.sbt
Expand Up @@ -27,7 +27,7 @@ run / javaOptions ++= sys.props
.fold(Seq.empty[String])(res => Seq(s"-Dconfig.resource=$res"))
Global / cancelable := false // ctrl-c

val AkkaVersion = sys.props.getOrElse("akka.version", "2.8.0-M4")
val AkkaVersion = sys.props.getOrElse("akka.version", "2.8.0")
val AkkaHttpVersion = "10.5.0-M1"
val AkkaManagementVersion = "1.2.0"
val AkkaPersistenceR2dbcVersion = "1.1.0-M5"
Expand Down

0 comments on commit 9323332

Please sign in to comment.