Update build.gradle

This commit is contained in:
Christoph Stahl 2024-05-01 20:38:10 +02:00
parent b0c7abc923
commit 3672e114ed
1 changed files with 5 additions and 2 deletions

View File

@ -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'
}