javametrics
javametrics copied to clipboard
Dependency snippet on Maven Central is wrong
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>