MVN

com.covisint.core : metrics-bom

Maven & Gradle

Apr 22, 2015
1 usages

Metrics Bill of Material POM · This bill of materials (BOM) POM covers all the Metrics artifacts related to a particular version. By importing this BOM, you fix the version of all of Metrics-related artifacts to the versions associated with a particular release. This prevents the overriding of Metrics transitive dependencies which in turn could cause version conflicts between libraries. To use this BOM, add the following in your POM: <dependencyManagement> <dependencies> <dependency> <groupId>com.covisint.core</groupId> <artifactId>metrics-bom</artifactId> <version>3.0.2</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> And then declare your dependency on the Metrics artifacts *without* a version.

<dependency>
    <groupId>com.covisint.core</groupId>
    <artifactId>metrics-bom</artifactId>
    <version>3.0.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.covisint.core : metrics-bom to add to Maven - Latest Versions:

  • Latest Stable: 3.0.2

All Versions

Choose a version of com.covisint.core : metrics-bom to add to Maven - All Versions:

Version Vulnerabilities Updated
3.0.x
metrics-bom-3.0.2

How to add a POM dependency to Maven

POM as dependency in dependencyManagement

<dependency>
    <groupId>com.covisint.core</groupId>
    <artifactId>metrics-bom</artifactId>
    <version>3.0.2</version>
</dependency>

Advertisement