-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
35 lines (29 loc) · 982 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
apply plugin: 'java'
apply plugin: 'checkstyle'
apply plugin: 'findbugs'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
jcenter()
}
dependencies {
compileOnly "org.projectlombok:lombok:1.16.18"
compile "com.google.inject:guice:${GUICE_VERSION}"
compile "com.google.guava:guava:${GUAVA_VERSION}"
compile "org.modelmapper:modelmapper:${MODEL_MAPPER_VERSION}"
compile "org.eclipse.collections:eclipse-collections:8.2.0"
compile "org.eclipse.collections:eclipse-collections-api:8.2.0"
testCompileOnly "org.projectlombok:lombok:1.16.18"
testCompile "junit:junit:${JUNIT_VERSION}"
testCompile "org.mockito:mockito-all:${MOCKITO_VERSION}"
testCompile "com.google.truth:truth:${TRUTH_VERSION}"
}
// ignore check failure
[checkstyleMain, checkstyleTest, findbugsMain, findbugsTest]*.ignoreFailures = true
findbugs {
toolVersion = "3.0.1"
effort = "max"
}
task wrapper(type: Wrapper) {
gradleVersion = '4.1'
}