blatt02/build.gradle

26 lines
520 B
Groovy
Raw Permalink Normal View History

2023-05-03 12:02:18 +02:00
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'application'
repositories {
mavenCentral()
mavenLocal()
2024-05-01 20:38:10 +02:00
maven {
url "https://repo.akka.io/maven"
}
2023-05-03 12:02:18 +02:00
}
dependencies {
2024-05-01 20:38:10 +02:00
implementation 'com.typesafe.akka:akka-actor-typed_2.13:2.9.2'
2023-05-03 12:02:18 +02:00
implementation 'ch.qos.logback:logback-classic:1.2.3'
2024-05-01 20:38:10 +02:00
testImplementation 'com.typesafe.akka:akka-actor-testkit-typed_2.13:2.9.2'
2023-05-03 12:02:18 +02:00
testImplementation 'junit:junit:4.13.1'
}
mainClassName = "com.example.AkkaStart"
run {
standardInput = System.in
}