Skip to content

Commit

Permalink
bump: Akka 2.9.0-M2, Akka HTTP 10.6.0-M1 (#1197)
Browse files Browse the repository at this point in the history
* bump: Akka 2.9.0-M2, Akka HTTP 10.6.0-M1

* httpsServer
  • Loading branch information
patriknw authored Oct 2, 2023
1 parent d2f74e7 commit 5944736
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion management/src/test/java/akka/management/CodeExamples.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public void start() {
//#start-akka-management-with-https-context
AkkaManagement management = AkkaManagement.get(system);

HttpsConnectionContext https = ConnectionContext.https(sslContext);
HttpsConnectionContext https = ConnectionContext.httpsServer(sslContext);
management.start(settings -> settings.withHttpsConnectionContext(https));
//#start-akka-management-with-https-context
}
Expand Down
10 changes: 5 additions & 5 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ object Dependencies {
val CrossScalaVersions = Seq(Scala213, Scala3)

// Align the versions in integration-test/kubernetes-api-java/pom.xml
val AkkaVersion = "2.8.2"
val AkkaBinaryVersion = "2.8"
val AkkaVersion = "2.9.0-M2"
val AkkaBinaryVersion = "2.9"
// Align the versions in integration-test/kubernetes-api-java/pom.xml
val AkkaHttpVersion = "10.5.1"
val AkkaHttpBinaryVersion = "10.5"
val AkkaHttpVersion = "10.6.0-M1"
val AkkaHttpBinaryVersion = "10.6"

val ScalaTestVersion = "3.2.17"
val ScalaTestPlusJUnitVersion = ScalaTestVersion + ".0"

val AwsSdkVersion = "1.12.559"
val JacksonVersion = "2.15.2"
val JacksonDatabindVersion = "2.15.2"
val JacksonDatabindVersion = JacksonVersion

val Log4j2Version = "2.20.0"

Expand Down

0 comments on commit 5944736

Please sign in to comment.