We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
micrometer
1 parent b652f60 commit 0262185Copy full SHA for 0262185
grace-api/build.gradle
@@ -9,7 +9,9 @@ dependencies {
9
api(libs.slf4j.api)
10
api(libs.spring.beans)
11
compileOnly(libs.spring.boot)
12
- api(libs.spring.context)
+ api libs.spring.context, {
13
+ exclude group: 'io.micrometer', module: 'micrometer-observation'
14
+ }
15
api(libs.spring.core)
16
testImplementation(libs.spring.boot)
17
}
grace-shell/build.gradle
@@ -43,7 +43,9 @@ dependencies {
43
44
api libs.groovy.json
45
compileOnly libs.jakarta.servlet
46
- implementation libs.spring.boot
+ implementation libs.spring.boot, {
47
+ exclude group: "io.micrometer"
48
49
compileOnly libs.spring.web, {
50
exclude group: "io.micrometer"
51
0 commit comments