RuntimeTools / javametrics

Application Metrics for Java™ instruments the Java runtime for performance monitoring, providing the monitoring data visually with its built in dashboard

Home Page:https://developer.ibm.com/javasdk/application-metrics-java/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dependency snippet on Maven Central is wrong

sjanuary opened this issue · comments

https://mvnrepository.com/artifact/com.ibm.runtimetools/javametrics-dash/1.0.2 contains a code snippet that shows how to add javametrics-dash as a dependency.

It is

<!-- https://mvnrepository.com/artifact/com.ibm.runtimetools/javametrics-dash -->
<dependency>
    <groupId>com.ibm.runtimetools</groupId>
    <artifactId>javametrics-dash</artifactId>
    <version>1.0.2</version>
</dependency>

but should be

<!-- https://mvnrepository.com/artifact/com.ibm.runtimetools/javametrics-dash -->
<dependency>
    <groupId>com.ibm.runtimetools</groupId>
    <artifactId>javametrics-dash</artifactId>
    <version>1.0.2</version>
    <type>war</type>
</dependency>