forked from treasure-data/kafka-fluentd-consumer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (29 loc) · 1.06 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
plugins {
id 'java'
id 'maven'
id 'com.github.johnrengelman.shadow' version '1.2.3'
}
version = '0.3.1'
task wrapper(type: Wrapper) {
gradleVersion = '2.6'
}
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.komamitsu', name: 'fluency', version: '1.1.0'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.12'
compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.12'
compile group: "org.apache.kafka", name: "kafka_2.10", version: "0.8.2.0"
compile group: "com.fasterxml.jackson.core", name: "jackson-core", version: "2.8.1"
compile group: "com.fasterxml.jackson.core", name: "jackson-annotations", version: "2.8.1"
compile group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.8.1"
compile group: 'org.jruby.joni', name: 'joni', version: '2.1.11'
}
jar {
manifest {
attributes 'Implementation-Title': 'Kafka Consumer for Fluentd',
'Implementation-Version': version,
'Main-Class': 'org.fluentd.kafka.GroupConsumer'
}
}