-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
53 lines (46 loc) · 1.59 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
plugins {
id 'java'
id 'maven'
id 'findbugs'
id 'com.github.johnrengelman.shadow' version '1.2.2'
}
version = '0.0.3'
group = 'com.github.cosmo0920'
sourceCompatibility = 1.7
targetCompatibility = 1.7
task wrapper(type: Wrapper) {
gradleVersion = '2.4'
}
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.komamitsu', name: 'fluency', version: '0.0.10'
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.flume", name: 'flume-ng-core', version: '1.6.0'
compile group: "org.apache.flume", name: 'flume-ng-sdk', version: '1.6.0'
compile group: "org.apache.flume", name: 'flume-ng-configuration', version: '1.6.0'
compile group: "com.fasterxml.jackson.core", name: "jackson-core", version: "2.6.1"
compile group: "com.fasterxml.jackson.core", name: "jackson-annotations", version: "2.6.1"
compile group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.6.1"
compile group: 'org.jruby.joni', name: 'joni', version: '2.1.6'
compile group: 'com.google.guava', name: 'guava', version: '18.0'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.mockito', name: 'mockito-all', version: '1.10.19'
}
findbugs {
effort = 'max'
}
tasks.withType(FindBugs) {
reports {
xml.enabled = false
html.enabled = true
}
}
jar {
manifest {
attributes 'Implementation-Title': 'Flume Sink for Fluentd',
'Implementation-Version': version
}
}