-
Notifications
You must be signed in to change notification settings - Fork 172
/
Copy pathbuild.gradle
executable file
·134 lines (115 loc) · 2.88 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
128
129
130
131
132
133
buildscript {
repositories { jcenter() }
dependencies {
classpath 'com.github.ben-manes:gradle-versions-plugin:0.11.3'
classpath 'com.netflix.nebula:nebula-dependency-recommender:3.1.0'
}
}
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: 'nebula.dependency-recommender'
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/']
}
}
dependencyRecommendations {
propertiesFile file: new File(rootProject.projectDir, 'dependencies.properties')
}
dependencies {
compile "org.slf4j:slf4j-api"
testCompile 'junit:junit'
testCompile 'nl.jqno.equalsverifier:equalsverifier'
jmh "org.slf4j:slf4j-simple"
}
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}"
}
}
}
}