-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.gradle
324 lines (282 loc) · 8.6 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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
buildscript {
repositories {
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath libs.plugin.license
classpath libs.plugin.nebulaRelease
classpath libs.plugin.nebulaPublishing
classpath libs.plugin.nebulaProject
classpath libs.plugin.nebulaInfo
classpath libs.plugin.noHttp
classpath libs.plugin.nexusPublish
classpath libs.plugin.javaformat
constraints {
classpath(libs.asmForPlugins) {
because 'Supports modern JDKs'
}
}
}
configurations.classpath.resolutionStrategy.cacheDynamicVersionsFor 0, 'minutes'
}
// Hacks because of Antora's clone/checkout/worktrees behavior
// Antora uses shallow-clone and worktrees to check out branches/tags.
if (project.hasProperty('antora')) {
'git fetch --unshallow --all --tags'.execute().text // Antora shallow-clones so there is no history (we need commit history to find the last tag in the tree)
String ref = 'git rev-parse --abbrev-ref HEAD'.execute().text.trim()
if (ref == 'HEAD') { // if Antora checks out a tag instead of a branch
String tag = 'git tag --points-at HEAD'.execute().text.trim() // jgit is not able to figure out tags in Antora's worktree
if (tag) {
println "Found release tag: $tag, using it as release.version"
ext['release.version'] = tag.substring(1)
}
}
}
// TODO: remove this hack, see: https://github.com/nebula-plugins/nebula-release-plugin/issues/213
def releaseStage = findProperty('release.stage')
apply plugin: 'nebula.release'
release.defaultVersionStrategy = nebula.plugin.release.git.opinion.Strategies.SNAPSHOT
apply plugin: 'io.github.gradle-nexus.publish-plugin'
apply from: "dependencies.gradle"
allprojects {
group = 'io.micrometer'
ext.'release.stage' = releaseStage ?: 'SNAPSHOT'
afterEvaluate { project -> println "I'm configuring $project.name with version $project.version" }
}
subprojects {
apply plugin: 'signing'
apply plugin: 'io.spring.javaformat'
if (project.name != 'micrometer-docs-generator-bom') {
apply plugin: 'java-library'
apply plugin: 'com.github.hierynomus.license'
apply plugin: 'checkstyle'
apply plugin: 'io.spring.nohttp'
java {
// It is more idiomatic to define different features for different sets of optional
// dependencies, e.g., 'dropwizard' and 'reactor'. If this library published Gradle
// metadata, Gradle users would be able to use these feature names in their dependency
// declarations instead of understanding the actual required optional dependencies.
// But we don't publish Gradle metadata yet and this may be overkill so just have a
// single feature for now to correspond to any optional dependency.
registerFeature('optional') {
usingSourceSet(sourceSets.main)
}
}
// All projects use optional annotations, but since we don't expose them downstream we would
// have to add the dependency in every project, which is tedious so just do it here.
dependencies {
// JSR-305 only used for non-required meta-annotations
optionalApi libs.jsr305
checkstyle libs.javaFormatForPlugins
}
tasks {
compileJava {
options.encoding = 'UTF-8'
options.compilerArgs << '-Xlint:unchecked' << '-Xlint:deprecation'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
// ensure Java 8 baseline is enforced for main source
if (JavaVersion.current().isJava9Compatible()) {
options.release = 8
}
}
compileTestJava {
options.encoding = 'UTF-8'
options.compilerArgs << '-Xlint:unchecked' << '-Xlint:deprecation'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
javadoc {
configure(options) {
tags(
'apiNote:a:API Note:',
'implSpec:a:Implementation Requirements:',
'implNote:a:Implementation Note:'
)
}
}
}
normalization {
runtimeClasspath {
metaInf {
[
'Build-Date',
'Build-Date-UTC',
'Built-By',
'Built-OS',
'Build-Host',
'Build-Job',
'Build-Number',
'Build-Id',
'Change',
'Full-Change',
'Branch',
'Module-Origin',
'Created-By',
'Build-Java-Version'
].each {
ignoreAttribute it
ignoreProperty it
}
}
}
}
//noinspection GroovyAssignabilityCheck
test {
// set heap size for the test JVM(s)
maxHeapSize = "1500m"
useJUnitPlatform {
excludeTags 'docker'
}
develocity.testRetry {
maxFailures = 5
maxRetries = 3
}
}
task dockerTest(type: Test) {
// set heap size for the test JVM(s)
maxHeapSize = "1500m"
useJUnitPlatform {
includeTags 'docker'
}
}
project.tasks.withType(Test) { Test testTask ->
testTask.testLogging.exceptionFormat = 'full'
}
license {
header rootProject.file('gradle/licenseHeader.txt')
strictCheck true
mapping {
kt = 'SLASHSTAR_STYLE'
}
sourceSets = project.sourceSets
ext.year = Calendar.getInstance().get(Calendar.YEAR)
skipExistingHeaders = true
exclude '**/*.json' // comments not supported
}
// Publish resolved versions.
plugins.withId('maven-publish') {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
publishing {
publications {
nebula(MavenPublication) {
versionMapping {
allVariants {
fromResolutionResult()
}
}
// We publish resolved versions so don't need to publish our dependencyManagement
// too. This is different from many Maven projects, where published artifacts often
// don't include resolved versions and have a parent POM including dependencyManagement.
pom.withXml {
def dependencyManagement = asNode().get('dependencyManagement')
if (dependencyManagement != null) {
asNode().remove(dependencyManagement)
}
}
}
}
}
}
}
plugins.withId('maven-publish') {
publishing {
publications {
nebula(MavenPublication) {
// Nebula converts dynamic versions to static ones so it's ok.
suppressAllPomMetadataWarnings()
}
}
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
}
// Nebula doesn't interface with Gradle's module format so just disable it for now.
tasks.withType(GenerateModuleMetadata) {
enabled = false
}
}
tasks.register('downloadDependencies') {
outputs.upToDateWhen { false }
doLast {
project.configurations.findAll { it.canBeResolved }*.files
}
}
if (!['samples', 'benchmarks'].find { project.name.contains(it) }) {
apply plugin: 'com.netflix.nebula.maven-publish'
apply plugin: 'com.netflix.nebula.maven-manifest'
apply plugin: 'com.netflix.nebula.maven-developer'
apply plugin: 'com.netflix.nebula.javadoc-jar'
apply plugin: 'com.netflix.nebula.source-jar'
apply plugin: 'com.netflix.nebula.maven-apache-license'
apply plugin: 'com.netflix.nebula.publish-verification'
apply plugin: 'com.netflix.nebula.contacts'
apply plugin: 'com.netflix.nebula.info'
apply plugin: 'com.netflix.nebula.project'
if (project.name != 'micrometer-docs-generator-bom') {
jar {
manifest.attributes.put('Automatic-Module-Name', project.name.replace('-', '.'))
metaInf {
from "$rootDir/LICENSE"
from "$rootDir/NOTICE"
}
}
}
contacts {
moniker 'Tommy Ludwig'
github 'shakuzen'
}
moniker 'Jonatan Ivanov'
github 'jonatan-ivanov'
}
moniker 'Marcin Grzejszczak'
github 'marcingrzejszczak'
}
}
}
description = 'Documentation generator for Micrometer'
repositories {
mavenCentral()
}
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 = '8.10'
}
defaultTasks 'build'