forked from micrometer-metrics/micrometer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
186 lines (160 loc) · 5.66 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
buildscript {
repositories {
mavenCentral()
maven { url 'https://plugins.gradle.org/m2/' }
maven {
url 'https://repo.spring.io/plugins-release'
}
mavenLocal()
}
dependencies {
classpath 'org.ow2.asm:asm:5.0.3'
classpath 'io.spring.gradle:spring-release-plugin:0.20.1'
classpath 'com.netflix.nebula:gradle-extra-configurations-plugin:3.2.0'
classpath 'com.netflix.nebula:nebula-project-plugin:3.4.0'
classpath "gradle.plugin.com.dorongold.plugins:task-tree:1.3"
classpath "io.spring.nohttp:nohttp-gradle:0.0.4.RELEASE"
classpath 'io.github.gradle-nexus:publish-plugin:1.0.0'
}
configurations.classpath.resolutionStrategy.cacheDynamicVersionsFor 0, 'minutes'
}
apply plugin: 'io.spring.release'
apply plugin: 'io.github.gradle-nexus.publish-plugin'
allprojects {
apply plugin: 'io.spring.license'
afterEvaluate { project ->
println "I'm building $project.name with version $project.version"
}
group = 'io.micrometer'
}
subprojects {
apply plugin: 'signing'
if (project.name != 'micrometer-bom') {
apply plugin: 'java'
apply plugin: 'checkstyle'
apply plugin: 'io.spring.nohttp'
tasks {
compileJava {
options.encoding = 'UTF-8'
options.compilerArgs << '-Xlint:unchecked' << '-Xlint:deprecation'
// ensure Java 8 baseline is enforced for main source
if (JavaVersion.current().isJava9Compatible()) {
options.compilerArgs.addAll(['--release', '8'])
}
}
compileTestJava {
options.encoding = 'UTF-8'
options.compilerArgs << '-Xlint:unchecked' << '-Xlint:deprecation'
sourceCompatibility = JavaVersion.current()
targetCompatibility = JavaVersion.current()
}
}
//noinspection GroovyAssignabilityCheck
test {
// set heap size for the test JVM(s)
maxHeapSize = "1500m"
useJUnitPlatform()
}
checkstyle {
toolVersion = '8.23'
configFile = rootProject.file('config/checkstyle/checkstyle.xml')
}
license {
ext.year = Calendar.getInstance().get(Calendar.YEAR)
skipExistingHeaders = true
}
plugins.withId('maven-publish') {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}
plugins.withId('maven-publish') {
publishing {
publications {
nebula(MavenPublication)
}
repositories {
maven {
name = 'Snapshot'
url = 'https://repo.spring.io/snapshot'
credentials {
username findProperty('SNAPSHOT_REPO_USER')
password findProperty('SNAPSHOT_REPO_PASSWORD')
}
}
maven {
name = 'Milestone'
url = 'https://repo.spring.io/milestone'
credentials {
username findProperty('MILESTONE_REPO_USER')
password findProperty('MILESTONE_REPO_PASSWORD')
}
}
}
}
signing {
required = System.env.CIRCLE_STAGE == 'deploy'
useInMemoryPgpKeys(findProperty('SIGNING_KEY'), findProperty('SIGNING_PASSWORD'))
sign publishing.publications.nebula
}
}
dependencyLocking {
lockAllConfigurations()
}
task resolveAndLockAll {
doFirst {
assert gradle.startParameter.writeDependencyLocks
}
doLast {
def skip = ['annotationProcessor', 'apt', 'testAnnotationProcessor', 'checkstyle',
'shadow', 'testApt', 'archives', 'junitPlatform']
configurations.each {
if (it.canBeResolved && !skip.contains(it.name)) {
it.resolve()
}
}
}
}
if(!['samples', 'benchmarks'].find{project.name.contains(it)}) {
apply plugin: 'io.spring.publishing'
contacts {
moniker 'Tommy Ludwig'
github 'shakuzen'
}
}
if (project.name != 'micrometer-bom') {
jar {
metaInf {
from "$rootDir/LICENSE"
from "$rootDir/NOTICE"
}
}
}
if (project.extensions.findByName('bintray')) {
bintray.labels = ['micrometer', 'atlas', 'metrics', 'prometheus', 'spectator', 'influx', 'new-relic', 'signalfx', 'wavefront', 'elastic', 'dynatrace', 'azure-monitor', 'appoptics', 'kairos', 'stackdriver']
bintray.packageName = 'io.micrometer'
}
}
description = 'Application monitoring instrumentation facade'
repositories {
mavenCentral()
mavenLocal()
}
def check = tasks.findByName('check')
if (check) project.rootProject.tasks.releaseCheck.dependsOn check
}
nexusPublishing {
repositories {
mavenCentral {
nexusUrl.set(uri('https://s01.oss.sonatype.org/service/local/'))
snapshotRepositoryUrl.set(uri('https://repo.spring.io/snapshot/')) // not used but necessary for the plugin
username = findProperty('MAVEN_CENTRAL_USER')
password = findProperty('MAVEN_CENTRAL_PASSWORD')
}
}
}
wrapper {
gradleVersion = '5.6.4'
}
defaultTasks 'build'