@@ -103,13 +103,12 @@ subprojects {
103
103
javadoc {
104
104
if (project. name. contains(' samples' )) {
105
105
enabled = false
106
- }
107
- else {
106
+ } else {
108
107
configure(options) {
109
108
tags(
110
- ' apiNote:a:API Note:' ,
111
- ' implSpec:a:Implementation Requirements:' ,
112
- ' implNote:a:Implementation Note:'
109
+ ' apiNote:a:API Note:' ,
110
+ ' implSpec:a:Implementation Requirements:' ,
111
+ ' implNote:a:Implementation Note:'
113
112
)
114
113
options. addBooleanOption(' Xdoclint:all,-missing' , true )
115
114
}
@@ -121,20 +120,20 @@ subprojects {
121
120
runtimeClasspath {
122
121
metaInf {
123
122
[
124
- ' Build-Date' ,
125
- ' Build-Date-UTC' ,
126
- ' Built-By' ,
127
- ' Built-OS' ,
128
- ' Build-Host' ,
129
- ' Build-Job' ,
130
- ' Build-Number' ,
131
- ' Build-Id' ,
132
- ' Change' ,
133
- ' Full-Change' ,
134
- ' Branch' ,
135
- ' Module-Origin' ,
136
- ' Created-By' ,
137
- ' Build-Java-Version'
123
+ ' Build-Date' ,
124
+ ' Build-Date-UTC' ,
125
+ ' Built-By' ,
126
+ ' Built-OS' ,
127
+ ' Build-Host' ,
128
+ ' Build-Job' ,
129
+ ' Build-Number' ,
130
+ ' Build-Id' ,
131
+ ' Change' ,
132
+ ' Full-Change' ,
133
+ ' Branch' ,
134
+ ' Module-Origin' ,
135
+ ' Created-By' ,
136
+ ' Build-Java-Version'
138
137
]. each {
139
138
ignoreAttribute it
140
139
ignoreProperty it
@@ -261,7 +260,7 @@ subprojects {
261
260
description = ' Resolves dependencies of all configurations and writes them into the lock file.'
262
261
outputs. upToDateWhen { false }
263
262
doFirst {
264
- assert gradle. startParameter. writeDependencyLocks || gradle. startParameter. lockedDependenciesToUpdate : ' Execute resolveAndLockAll --write-locks or --update-locks <dependencies>'
263
+ assert gradle. startParameter. writeDependencyLocks || gradle. startParameter. lockedDependenciesToUpdate: ' Execute resolveAndLockAll --write-locks or --update-locks <dependencies>'
265
264
}
266
265
doLast {
267
266
project. configurations. findAll { it. canBeResolved }* . resolve()
@@ -275,7 +274,7 @@ subprojects {
275
274
}
276
275
}
277
276
278
- if (! [' samples' , ' benchmarks' ]. find{ project. name. contains(it)}) {
277
+ if (! [' samples' , ' benchmarks' ]. find { project. name. contains(it) }) {
279
278
apply plugin : ' nebula.maven-publish'
280
279
apply plugin : ' nebula.maven-manifest'
281
280
apply plugin : ' nebula.maven-developer'
@@ -318,7 +317,7 @@ subprojects {
318
317
String rootUrl
319
318
if (compatibleVersion. contains(' -M' ) || compatibleVersion. contains(' -RC' )) {
320
319
rootUrl = ' https://repo.spring.io/milestone/'
321
- } else if (compatibleVersion. contains(' -SNAPSHOT' ) ) {
320
+ } else if (compatibleVersion. contains(' -SNAPSHOT' )) {
322
321
rootUrl = ' https://repo.spring.io/snapshot/'
323
322
} else {
324
323
rootUrl = repositories. mavenCentral(). url
@@ -340,8 +339,9 @@ subprojects {
340
339
341
340
packageExcludes = [' io.micrometer.shaded.*' , ' io.micrometer.statsd.internal' ]
342
341
343
- // For 1.8.x branch only.
344
- classExcludes = [' io.micrometer.core.instrument.util.JsonUtils' ]
342
+ // For 1.9.x branch only.
343
+ classExcludes = [' io.micrometer.core.ipc.http.ReactorNettySender' ,
344
+ ' io.micrometer.core.tck.RegistryResolver' ]
345
345
346
346
// TODO remove methodExcludes when gh-3181 is resolved
347
347
methodExcludes = [' io.micrometer.stackdriver.StackdriverConfig#metricTypePrefix()' ,
@@ -355,14 +355,9 @@ subprojects {
355
355
' io.micrometer.core.instrument.LongTaskTimer#record(java.util.function.DoubleSupplier)' ,
356
356
' io.micrometer.signalfx.SignalFxConfig#publishDeltaHistogram()' ,
357
357
358
- // For 1.8.x branch only.
359
- ' io.micrometer.core.instrument.binder.mongodb.MongoCommandTagsProvider#commandStarted(com.mongodb.event.CommandStartedEvent)' ,
360
- ' io.micrometer.dynatrace.DynatraceConfig#apiVersion()' ,
361
- ' io.micrometer.dynatrace.DynatraceConfig#defaultDimensions()' ,
362
- ' io.micrometer.dynatrace.DynatraceConfig#enrichWithDynatraceMetadata()' ,
363
- ' io.micrometer.dynatrace.DynatraceConfig#metricKeyPrefix()' ,
364
- ' io.micrometer.elastic.ElasticConfig#apiKeyCredentials()' ,
365
- ' io.micrometer.stackdriver.StackdriverConfig#useSemanticMetricTypes()'
358
+ // For 1.9.x branch only.
359
+ ' io.micrometer.dynatrace.DynatraceConfig#useDynatraceSummaryInstruments()' ,
360
+ ' io.micrometer.signalfx.SignalFxConfig#publishCumulativeHistogram()'
366
361
]
367
362
onlyIf { compatibleVersion != ' SKIP' }
368
363
}
@@ -400,7 +395,7 @@ nexusPublishing {
400
395
}
401
396
}
402
397
403
- task deleteLockFiles (type : Delete ) {
398
+ task deleteLockFiles (type : Delete ) {
404
399
delete fileTree(dir : ' .' , include : ' **/*.lockfile' )
405
400
}
406
401
0 commit comments