This commit is contained in:
Diane Duan 2017-01-04 17:50:53 +08:00
parent 3d30236e8f
commit 494e539700
4 changed files with 38 additions and 0 deletions

27
metrics/pom.xml Normal file
View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<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>
<dep.ver.metrics>3.1.0</dep.ver.metrics>
</properties>
<dependencies>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${dep.ver.metrics}</version>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,4 @@
package com.baeldung.metrics.core;
public class MetricsDemo {
}

View File

@ -0,0 +1,6 @@
package com.baeldung.metrics.core;
public class MetricsRegistryDemo {
public static void main(String[] args) {
}
}

View File

@ -173,6 +173,7 @@
<module>xml</module>
<module>xmlunit2</module>
<module>xstream</module>
<module>metrics</module>
</modules>
</project>