-
Notifications
You must be signed in to change notification settings - Fork 172
/
Copy pathbuild.gradle
executable file
·135 lines (116 loc) · 3.15 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
134
buildscript {
repositories { jcenter() }
dependencies {
classpath 'com.github.ben-manes:gradle-versions-plugin:0.15.0'
classpath 'com.netflix.nebula:nebula-dependency-recommender:5.0.0'
// This is a workaround for getting the shadow plugin to work correctly
// for some sub-projects. For more details see:
// https://github.com/johnrengelman/shadow/issues/188
classpath 'org.apache.ant:ant:1.9.7'
}
}
plugins {
id 'nebula.netflixoss' version '4.0.0'
id 'me.champeau.gradle.jmh' version '0.3.0'
id "com.github.spotbugs" version "1.2" apply false
}
// 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: 'nebula.compile-api'
apply plugin: 'java'
apply plugin: 'build-dashboard'
apply plugin: 'jacoco'
apply plugin: 'com.github.spotbugs'
apply plugin: 'checkstyle'
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/8/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 "org.openjdk.jmh:jmh-core:1.17"
jmh "org.openjdk.jmh:jmh-generator-annprocess:1.17"
}
jmh {
warmupIterations = 10
iterations = 10
fork = 1
threads = 1
profilers = ['stack']
include '.*Ids.*'
}
jacoco {
toolVersion = "0.7.9"
}
jacocoTestReport {
additionalSourceDirs = files(sourceSets.main.allJava.srcDirs)
reports {
xml.enabled false
csv.enabled false
html.destination file("${buildDir}/reports/jacoco")
}
}
checkstyle {
toolVersion = '6.7'
ignoreFailures = false
configFile = rootProject.file('codequality/checkstyle.xml')
sourceSets = [sourceSets.main]
}
tasks.withType(Checkstyle) {
exclude '**/tdunning/**'
}
spotbugs {
// Spotbugs plugin still pulls in findbugs so this version does not work...
//toolVersion "3.1.0-RC2"
excludeFilter = rootProject.file('codequality/findbugs-exclude.xml')
ignoreFailures = false
sourceSets = [sourceSets.main]
}
tasks.withType(com.github.spotbugs.SpotBugsTask) {
reports {
xml.enabled = false
html.enabled = true
}
}
pmd {
toolVersion = '5.5.4'
ignoreFailures = false
sourceSets = [sourceSets.main]
ruleSets = []
ruleSetFiles = rootProject.files("codequality/pmd.xml")
}
tasks.withType(Pmd) {
exclude '**/tdunning/**'
}
}