forked from Netflix/spectator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
executable file
·134 lines (115 loc) · 3.23 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.17.0'
classpath 'com.netflix.nebula:nebula-dependency-recommender:8.0.0'
classpath 'com.netflix.nebula:gradle-netflixoss-project-plugin:8.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 'me.champeau.gradle.jmh' version '0.4.7'
id "com.github.spotbugs" version "1.6.9" 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'
apply plugin: 'nebula.netflixoss'
}
subprojects {
apply plugin: 'nebula.compile-api'
apply plugin: 'java'
apply plugin: 'build-dashboard'
apply plugin: 'com.github.spotbugs'
apply plugin: 'checkstyle'
apply plugin: 'pmd'
repositories {
jcenter()
mavenLocal()
}
group = "com.netflix.${githubProjectName}"
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks {
compileJava {
options.encoding = 'UTF-8'
// Generate java8 bytecode and compile against the java8 class
// libraries.
if (JavaVersion.current().isJava9Compatible()) {
options.compilerArgs.addAll(['--release', '8'])
}
}
compileTestJava {
options.encoding = 'UTF-8'
sourceCompatibility = JavaVersion.current()
targetCompatibility = JavaVersion.current()
}
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 'org.junit.jupiter:junit-jupiter-engine'
testCompile 'nl.jqno.equalsverifier:equalsverifier'
jmh "org.slf4j:slf4j-simple"
jmh "org.openjdk.jmh:jmh-core:1.19"
jmh "org.openjdk.jmh:jmh-generator-annprocess:1.19"
}
test {
useJUnitPlatform()
}
jmh {
jmhVersion = '1.21'
warmupIterations = 2
iterations = 5
fork = 1
//threads = 1
profilers = ['stack', 'gc']
includeTests = false
duplicateClassesStrategy = 'warn'
include = ['.*IdTraversal.*']
}
checkstyle {
toolVersion = '8.21'
ignoreFailures = false
configFile = rootProject.file('codequality/checkstyle.xml')
sourceSets = [sourceSets.main]
}
spotbugs {
toolVersion = '3.1.12'
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 = '6.15.0'
ignoreFailures = false
sourceSets = [sourceSets.main]
ruleSets = []
ruleSetFiles = rootProject.files("codequality/pmd.xml")
}
}