-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
59 lines (48 loc) · 1.04 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
59
plugins {
id "org.sonarqube" version "2.8"
}
allprojects {
apply plugin: 'java'
apply plugin: 'jacoco'
apply plugin: 'checkstyle'
version = '0.2.0'
jacoco {
toolVersion = '0.8.5'
}
test {
finalizedBy jacocoTestReport
}
jacocoTestReport {
reports {
xml.enabled true
html.enabled false
}
}
checkstyle {
toolVersion = "8.26"
configFile = rootProject.file('config/checkstyle/checkstyle.xml')
ignoreFailures = true
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.25'
compile 'org.slf4j:slf4j-jdk14:1.7.25'
}
test {
testLogging {
events "failed"
exceptionFormat "full"
}
}
}
repositories {
mavenCentral()
maven {
url "https://github.com/psiegman/mvn-repo/raw/master/releases"
}
jcenter()
}
dependencies {
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:3.2.4'
compile 'com.google.inject:guice:4.1.0'
}