metrics-healthchecks-4.2.9.pom 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>io.dropwizard.metrics</groupId>
  6. <artifactId>metrics-parent</artifactId>
  7. <version>4.2.9</version>
  8. </parent>
  9. <artifactId>metrics-healthchecks</artifactId>
  10. <name>Metrics Health Checks</name>
  11. <packaging>bundle</packaging>
  12. <description>
  13. An addition to Metrics which provides the ability to run application-specific health checks,
  14. allowing you to check your application's heath in production.
  15. </description>
  16. <properties>
  17. <javaModuleName>com.codahale.metrics.health</javaModuleName>
  18. </properties>
  19. <dependencyManagement>
  20. <dependencies>
  21. <dependency>
  22. <groupId>io.dropwizard.metrics</groupId>
  23. <artifactId>metrics-bom</artifactId>
  24. <version>${project.version}</version>
  25. <type>pom</type>
  26. <scope>import</scope>
  27. </dependency>
  28. </dependencies>
  29. </dependencyManagement>
  30. <dependencies>
  31. <dependency>
  32. <groupId>io.dropwizard.metrics</groupId>
  33. <artifactId>metrics-core</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>io.dropwizard.metrics</groupId>
  37. <artifactId>metrics-jvm</artifactId>
  38. <optional>true</optional>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.slf4j</groupId>
  42. <artifactId>slf4j-api</artifactId>
  43. <version>${slf4j.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>junit</groupId>
  47. <artifactId>junit</artifactId>
  48. <version>${junit.version}</version>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.assertj</groupId>
  53. <artifactId>assertj-core</artifactId>
  54. <version>${assertj.version}</version>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.mockito</groupId>
  59. <artifactId>mockito-core</artifactId>
  60. <version>${mockito.version}</version>
  61. <scope>test</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.slf4j</groupId>
  65. <artifactId>slf4j-simple</artifactId>
  66. <version>${slf4j.version}</version>
  67. <scope>test</scope>
  68. </dependency>
  69. </dependencies>
  70. </project>