forked from CERN-BE/logalike
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
53 lines (45 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
48
49
50
51
52
53
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'scala'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.4'
}
}
apply plugin: 'com.github.johnrengelman.shadow'
repositories {
mavenCentral()
}
jar {
manifest {
attributes(
'Main-Class': 'com.repocad.hugin.Hugin',
)
}
}
shadowJar {
transform(com.github.jengelman.gradle.plugins.shadow.transformers.AppendingTransformer) {
resource = 'reference.conf'
}
}
dependencies {
compile 'org.elasticsearch.client:transport:5.6.3'
compile 'commons-io:commons-io:2.4'
compile "org.apache.logging.log4j:log4j-api:2.9.1"
compile "org.apache.logging.log4j:log4j-core:2.9.1"
compile 'com.google.code.gson:gson:2.5'
compile 'com.google.guava:guava:18.+'
compile 'org.scala-lang:scala-library:2.12.+'
compile 'com.typesafe.akka:akka-http_2.12:10.0.+'
compile 'com.typesafe.akka:akka-http-spray-json_2.12:10.0.+'
compile 'ch.megard:akka-http-cors_2.12:0.1.11'
testCompile 'org.mockito:mockito-all:1.+'
testCompile 'junit:junit:4.+'
}
test {
maxParallelForks = 2
}