From 3672e114ed50abf1beaa2da58218bbbe510e9cc9 Mon Sep 17 00:00:00 2001 From: Christoph Stahl Date: Wed, 1 May 2024 20:38:10 +0200 Subject: [PATCH] Update build.gradle --- build.gradle | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 52eca03..dd0e2c0 100644 --- a/build.gradle +++ b/build.gradle @@ -6,12 +6,15 @@ apply plugin: 'application' repositories { mavenCentral() mavenLocal() + maven { + url "https://repo.akka.io/maven" + } } dependencies { - implementation 'com.typesafe.akka:akka-actor-typed_2.13:2.8.0' + implementation 'com.typesafe.akka:akka-actor-typed_2.13:2.9.2' implementation 'ch.qos.logback:logback-classic:1.2.3' - testImplementation 'com.typesafe.akka:akka-actor-testkit-typed_2.13:2.8.0' + testImplementation 'com.typesafe.akka:akka-actor-testkit-typed_2.13:2.9.2' testImplementation 'junit:junit:4.13.1' }