Skip to content

Commit 5d3086c

Browse files
committed
GH-506 - Make Micrometer Tracing a mandatory dependency of the observability module.
ModuleObservabilityAutoConfiguration strongly depends on said module and there's no way to make it optionally depending on that.
1 parent 54ec22c commit 5d3086c

File tree

1 file changed

+6
-7
lines changed
  • spring-modulith-observability

1 file changed

+6
-7
lines changed

spring-modulith-observability/pom.xml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@
3030
<version>${project.version}</version>
3131
</dependency>
3232

33+
<dependency>
34+
<groupId>io.micrometer</groupId>
35+
<artifactId>micrometer-tracing</artifactId>
36+
</dependency>
37+
3338
<dependency>
3439
<groupId>org.springframework.boot</groupId>
3540
<artifactId>spring-boot-autoconfigure</artifactId>
@@ -47,7 +52,7 @@
4752
<artifactId>spring-boot-starter-test</artifactId>
4853
<scope>test</scope>
4954
</dependency>
50-
55+
5156
<dependency>
5257
<groupId>org.springframework.modulith</groupId>
5358
<artifactId>spring-modulith-test</artifactId>
@@ -67,12 +72,6 @@
6772
<optional>true</optional>
6873
</dependency>
6974

70-
<dependency>
71-
<groupId>io.micrometer</groupId>
72-
<artifactId>micrometer-tracing</artifactId>
73-
<optional>true</optional>
74-
</dependency>
75-
7675
<!-- Testing -->
7776

7877
<dependency>

0 commit comments

Comments
 (0)