-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (39 loc) · 1.21 KB
/
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
40
41
42
43
44
45
46
47
plugins {
id "net.ltgt.apt" version "0.10"
id "com.github.johnrengelman.shadow" version "2.0.2"
}
group "de.hpi"
version "1.0"
apply plugin: "java"
sourceCompatibility = 1.8
def scalaVersion = "2.11"
repositories {
mavenCentral()
}
dependencies {
compile "com.typesafe:config:1.3.2"
compileOnly "org.projectlombok:lombok:1.16.18"
compile "com.typesafe.akka:akka-actor_${scalaVersion}:2.5.3"
compile "com.typesafe.akka:akka-actor_${scalaVersion}:2.5.3"
compile "com.typesafe.akka:akka-remote_${scalaVersion}:2.5.3"
compile "com.typesafe.akka:akka-slf4j_${scalaVersion}:2.5.3"
compile "com.twitter:chill-akka_${scalaVersion}:0.9.2"
compile "ch.qos.logback:logback-classic:1.2.3"
compile "ch.qos.logback:logback-core:1.2.3"
compile "com.beust:jcommander:1.72"
compile "commons-codec:commons-codec:1.11"
testCompile "com.typesafe.akka:akka-testkit_${scalaVersion}:2.5.3"
testCompile "junit:junit:4.12"
}
shadowJar {
baseName = "StrelowEhmuellerAkka"
classifier = null
version = null
configurations = [project.configurations.compile]
append 'reference.conf'
}
jar {
manifest {
attributes "Main-Class": "de.hpi.akka_exercise.Main"
}
}