-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (31 loc) · 969 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "com.github.jengelman.gradle.plugins:shadow:1.2.4"
}
}
apply plugin: 'java'
apply plugin: 'application'
apply plugin: "com.github.johnrengelman.shadow"
mainClassName = 'com.devavidity.passanger.stat.generator.Application'
repositories {
jcenter()
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.13'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.8.5'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.8.0'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.8.5'
compile group: 'commons-cli', name: 'commons-cli', version: '1.4'
compile group: 'org.apache.kafka', name: 'kafka-clients', version: '0.11.0.0'
testCompile 'junit:junit:3.8.2'
}
shadowJar {
}
jar {
manifest {
attributes 'Main-Class': mainClassName
}
}