-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle
59 lines (50 loc) · 1.32 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
54
55
56
57
58
buildscript {
repositories {
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath('com.diffplug.gradle.spotless:spotless:2.4.1',
'com.github.jengelman.gradle.plugins:shadow:1.2.4',
'com.bmuschko:gradle-docker-plugin:3.0.6')
}
}
ext.flinkVersion = '1.3.0'
allprojects {
apply plugin: 'groovy'
apply plugin: 'com.diffplug.gradle.spotless'
apply plugin: 'findbugs'
group 'com.tngtech'
version '0.1-SNAPSHOT'
repositories {
mavenLocal()
maven {
url {
'https://repository.apache.org/content/repositories/snapshots/'
}
}
jcenter()
}
dependencies {
compile 'com.google.guava:guava:20.0'
compileOnly 'org.projectlombok:lombok:1.16.16'
testCompile('org.spockframework:spock-core:1.0-groovy-2.4',
'org.hamcrest:hamcrest-library:1.3')
testRuntime 'cglib:cglib-nodep:3.1'
}
spotless {
java {
googleJavaFormat()
}
}
findbugs {
excludeFilter = file("$rootProject.projectDir/config/findbugs/excludeFilter.xml")
}
tasks.withType(FindBugs) {
reports {
xml.enabled false
html.enabled true
}
}
}