akkaBlanko/build.gradle

23 lines
461 B
Groovy
Raw Normal View History

2023-05-03 12:02:18 +02:00
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'application'
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
implementation 'com.typesafe.akka:akka-actor-typed_2.13:2.8.0'
implementation 'ch.qos.logback:logback-classic:1.2.3'
testImplementation 'com.typesafe.akka:akka-actor-testkit-typed_2.13:2.8.0'
testImplementation 'junit:junit:4.13.1'
}
mainClassName = "com.example.AkkaStart"
run {
standardInput = System.in
}