forked from AlessandroRizzetto/distributed-systems
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (33 loc) · 850 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
plugins {
id 'java'
id 'idea'
id 'application'
}
repositories {
mavenCentral()
mavenLocal()
maven {
url "https://repo.akka.io/maven"
}
}
def versions = [
ScalaBinary: "2.13",
AkkaVersion: "2.9.0",
LogBackVersion: "1.2.3",
JunitVersion: "4.13.1"
]
dependencies {
implementation "com.typesafe.akka:akka-actor-typed_${versions.ScalaBinary}:${versions.AkkaVersion}"
testImplementation "com.typesafe.akka:akka-actor-testkit-typed_${versions.ScalaBinary}:${versions.AkkaVersion}"
testImplementation "junit:junit:${versions.JunitVersion}"
implementation "ch.qos.logback:logback-classic:${versions.LogBackVersion}"
}
compileJava {
options.compilerArgs += ["-Xlint:deprecation"]
}
application {
mainClass = 'it.ds1.Main'
}
run {
standardInput = System.in
}