Update project dependency setup by adding Micrometer to Spring Data Build.

Closes #201
This commit is contained in:
Mark Paluch
2022-02-07 13:54:29 +01:00
parent d0fd6aab9b
commit 3bb5eae700
2 changed files with 7 additions and 0 deletions

View File

@@ -48,6 +48,11 @@ public class Dependencies {
public static final Dependency KOTLIN_COROUTINES = Dependency.of("Kotlin Coroutines",
"org.jetbrains.kotlinx:kotlinx-coroutines-bom");
public static final Dependency MICROMETER = Dependency.of("Micrometer", "io.micrometer:micrometer-bom");
public static final Dependency MICROMETER_TRACING = Dependency.of("Micrometer Tracing",
"io.micrometer:micrometer-tracing-bom");
public static final Dependency MOCKITO = Dependency.of("Mockito", "org.mockito:mockito-core");
public static final Dependency MOCKK = Dependency.of("Mockk", "io.mockk:mockk");

View File

@@ -50,6 +50,8 @@ public class ProjectDependencies implements Streamable<ProjectDependencies.Proje
config.add(Projects.BUILD, ProjectDependency.ofProperty("junit", Dependencies.JUNIT4));
config.add(Projects.BUILD, ProjectDependency.ofProperty("kotlin", Dependencies.KOTLIN));
config.add(Projects.BUILD, ProjectDependency.ofProperty("kotlin-coroutines", Dependencies.KOTLIN_COROUTINES));
config.add(Projects.BUILD, ProjectDependency.ofProperty("micrometer", Dependencies.MICROMETER));
config.add(Projects.BUILD, ProjectDependency.ofProperty("micrometer-tracing", Dependencies.MICROMETER_TRACING));
config.add(Projects.BUILD, ProjectDependency.ofProperty("mockito", Dependencies.MOCKITO));
config.add(Projects.BUILD, ProjectDependency.ofProperty("mockk", Dependencies.MOCKK));
config.add(Projects.BUILD, ProjectDependency.ofProperty("querydsl", Dependencies.QUERYDSL));