-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
25 lines (20 loc) · 881 Bytes
/
build.gradle
File metadata and controls
25 lines (20 loc) · 881 Bytes
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
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'application'
group 'Edan_Yaar'
version '0.2'
sourceCompatibility = 11
targetCompatibility = 11
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'com.typesafe.akka', name: 'akka-actor-typed_2.13', version: '2.6.1'
compile group: 'com.typesafe.akka', name: 'akka-cluster-typed_2.13', version: '2.6.1'
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
compile group: 'com.typesafe.akka', name: 'akka-slf4j_2.13', version: '2.6.1'
compile group: 'com.typesafe.akka', name: 'akka-serialization-jackson_2.13', version: '2.6.1'
compile group: 'com.typesafe.akka', name: 'akka-cluster-tools_2.13', version: '2.6.1'
compile group: 'com.typesafe.akka', name: 'akka-actor_2.13', version: '2.6.1'
}