metrics-jvm-4.2.9.pom 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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-jvm</artifactId>
  10. <name>JVM Integration for Metrics</name>
  11. <packaging>bundle</packaging>
  12. <description>
  13. A set of classes which allow you to monitor critical aspects of your Java Virtual Machine
  14. using Metrics.
  15. </description>
  16. <properties>
  17. <javaModuleName>com.codahale.metrics.jvm</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>org.slf4j</groupId>
  37. <artifactId>slf4j-api</artifactId>
  38. <version>${slf4j.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>junit</groupId>
  42. <artifactId>junit</artifactId>
  43. <version>${junit.version}</version>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.assertj</groupId>
  48. <artifactId>assertj-core</artifactId>
  49. <version>${assertj.version}</version>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.mockito</groupId>
  54. <artifactId>mockito-core</artifactId>
  55. <version>${mockito.version}</version>
  56. <scope>test</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.slf4j</groupId>
  60. <artifactId>slf4j-simple</artifactId>
  61. <version>${slf4j.version}</version>
  62. <scope>test</scope>
  63. </dependency>
  64. </dependencies>
  65. </project>