29 lines
636 B
Groovy
29 lines
636 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'idea'
|
|
apply plugin: 'application'
|
|
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
mavenLocal()
|
|
maven {
|
|
url "https://repo.akka.io/maven"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.typesafe.akka:akka-actor-typed_2.13:2.10.0'
|
|
implementation 'ch.qos.logback:logback-classic:1.2.13'
|
|
testImplementation 'com.typesafe.akka:akka-actor-testkit-typed_2.13:2.10.0'
|
|
testImplementation 'junit:junit:4.13.1'
|
|
|
|
implementation 'org.slf4j:slf4j-api:2.0.9'
|
|
runtimeOnly 'ch.qos.logback:logback-classic:1.4.11'
|
|
}
|
|
|
|
mainClassName = "org.example.AkkaStart"
|
|
|
|
run{
|
|
standardInput = System.in
|
|
}
|