2017-01-04 17:50:53 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-05-12 20:32:54 +02:00
|
|
|
<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">
|
2017-01-04 17:50:53 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>metrics</artifactId>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
2017-01-19 12:48:10 +08:00
|
|
|
<dep.ver.metrics>3.1.2</dep.ver.metrics>
|
2017-01-17 09:56:45 +08:00
|
|
|
<dep.ver.servlet>3.1.0</dep.ver.servlet>
|
2017-01-04 17:50:53 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.dropwizard.metrics</groupId>
|
|
|
|
<artifactId>metrics-core</artifactId>
|
|
|
|
<version>${dep.ver.metrics}</version>
|
|
|
|
</dependency>
|
2017-01-09 11:53:32 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.dropwizard.metrics</groupId>
|
|
|
|
<artifactId>metrics-healthchecks</artifactId>
|
|
|
|
<version>${dep.ver.metrics}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.dropwizard.metrics</groupId>
|
|
|
|
<artifactId>metrics-servlets</artifactId>
|
|
|
|
<version>${dep.ver.metrics}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.dropwizard.metrics</groupId>
|
|
|
|
<artifactId>metrics-servlet</artifactId>
|
|
|
|
<version>${dep.ver.metrics}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2017-01-17 09:56:45 +08:00
|
|
|
<version>${dep.ver.servlet}</version>
|
2017-01-09 11:53:32 +08:00
|
|
|
</dependency>
|
2017-01-04 17:50:53 +08:00
|
|
|
</dependencies>
|
2017-01-17 06:40:44 +01:00
|
|
|
|
2017-01-18 19:52:39 +01:00
|
|
|
</project>
|