javametrics icon indicating copy to clipboard operation
javametrics copied to clipboard

Dependency snippet on Maven Central is wrong

Open sjanuary opened this issue 7 years ago • 0 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>

sjanuary avatar Nov 09 '17 11:11 sjanuary