Update project dependency setup by adding Micrometer to Spring Data Build.
Closes #201
This commit is contained in:
@@ -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");
|
||||
|
||||
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user