forked from Netflix/spectator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·128 lines (110 loc) · 2.68 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
buildscript {
repositories { jcenter() }
dependencies {
classpath 'com.github.ben-manes:gradle-versions-plugin:0.5'
}
}
plugins {
id 'nebula.netflixoss' version '3.1.2'
id 'me.champeau.gradle.jmh' version '0.2.0'
}
// Establish version and status
ext.githubProjectName = 'spectator'
allprojects {
apply plugin: 'project-report'
apply plugin: 'me.champeau.gradle.jmh'
apply plugin: 'com.github.ben-manes.versions'
task wrapper(type: Wrapper) {
gradleVersion = '2.6'
}
}
subprojects {
apply plugin: 'nebula.netflixoss'
apply plugin: 'java'
apply plugin: 'build-dashboard'
apply plugin: 'jacoco'
apply plugin: 'checkstyle'
apply plugin: 'findbugs'
apply plugin: 'pmd'
repositories {
jcenter()
mavenLocal()
}
group = "com.netflix.${githubProjectName}"
sourceCompatibility = 1.8
targetCompatibility = 1.8
project.tasks.withType(Javadoc) {
if (JavaVersion.current().isJava8Compatible()) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
javadoc {
options {
links = ['http://docs.oracle.com/javase/7/docs/api/']
}
}
dependencies {
compile "org.slf4j:slf4j-api:$version_slf4j"
testCompile 'junit:junit:4.12'
testCompile 'nl.jqno.equalsverifier:equalsverifier:1.7.2'
jmh "org.slf4j:slf4j-simple:$version_slf4j"
}
jmh {
warmupIterations = 2
iterations = 10
fork = 5
profilers = ['STACK']
include '.*'
}
jacoco {
toolVersion = "0.7.1.201405082137"
}
jacocoTestReport {
additionalSourceDirs = files(sourceSets.main.allJava.srcDirs)
reports {
xml.enabled false
csv.enabled false
html.destination "${buildDir}/reports/jacoco"
}
}
checkstyle {
toolVersion = '6.7'
ignoreFailures = false
configFile = rootProject.file('codequality/checkstyle.xml')
sourceSets = [sourceSets.main]
}
tasks.withType(Checkstyle) {
exclude '**/tdunning/**'
}
findbugs {
excludeFilter = rootProject.file('codequality/findbugs-exclude.xml')
ignoreFailures = false
sourceSets = [sourceSets.main]
}
tasks.withType(FindBugs) {
findbugs.toolVersion "3.0.0"
reports {
xml.enabled = false
html.enabled = true
}
}
pmd {
toolVersion = '5.3.3'
ignoreFailures = false
sourceSets = [sourceSets.main]
ruleSets = []
ruleSetFiles = rootProject.files("codequality/pmd.xml")
}
tasks.withType(Pmd) {
exclude '**/tdunning/**'
}
task copyDepsToBuild << {
['compile', 'runtime', 'testCompile', 'testRuntime'].each { conf ->
delete "${buildDir}/dependencies/${conf}"
copy {
from configurations[conf]
into "${buildDir}/dependencies/${conf}"
}
}
}
}