Skip to content

Commit 85d4bc9

Browse files
committed
Update project dependency setup by adding Micrometer to Spring Data Build.
Closes #201
1 parent 2894114 commit 85d4bc9

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

release-tools/src/main/java/org/springframework/data/release/dependency/Dependencies.java

+5
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ public class Dependencies {
4848
public static final Dependency KOTLIN_COROUTINES = Dependency.of("Kotlin Coroutines",
4949
"org.jetbrains.kotlinx:kotlinx-coroutines-bom");
5050

51+
public static final Dependency MICROMETER = Dependency.of("Micrometer", "io.micrometer:micrometer-bom");
52+
53+
public static final Dependency MICROMETER_TRACING = Dependency.of("Micrometer Tracing",
54+
"io.micrometer:micrometer-tracing-bom");
55+
5156
public static final Dependency MOCKITO = Dependency.of("Mockito", "org.mockito:mockito-core");
5257

5358
public static final Dependency MOCKK = Dependency.of("Mockk", "io.mockk:mockk");

release-tools/src/main/java/org/springframework/data/release/dependency/ProjectDependencies.java

+2
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ public class ProjectDependencies implements Streamable<ProjectDependencies.Proje
5050
config.add(Projects.BUILD, ProjectDependency.ofProperty("junit", Dependencies.JUNIT4));
5151
config.add(Projects.BUILD, ProjectDependency.ofProperty("kotlin", Dependencies.KOTLIN));
5252
config.add(Projects.BUILD, ProjectDependency.ofProperty("kotlin-coroutines", Dependencies.KOTLIN_COROUTINES));
53+
config.add(Projects.BUILD, ProjectDependency.ofProperty("micrometer", Dependencies.MICROMETER));
54+
config.add(Projects.BUILD, ProjectDependency.ofProperty("micrometer-tracing", Dependencies.MICROMETER_TRACING));
5355
config.add(Projects.BUILD, ProjectDependency.ofProperty("mockito", Dependencies.MOCKITO));
5456
config.add(Projects.BUILD, ProjectDependency.ofProperty("mockk", Dependencies.MOCKK));
5557
config.add(Projects.BUILD, ProjectDependency.ofProperty("querydsl", Dependencies.QUERYDSL));

0 commit comments

Comments
 (0)