MVN

com.covisint.core : hibernate-orm-bom

Maven & Gradle

Apr 22, 2015
8 usages

Hibernate ORM Bill of Material POM · This bill of materials (BOM) POM covers all the Hibernate ORM artifacts related to a particular version. By importing this BOM, you fix the version of all of Hibernate-related artifacts to the versions associated with a particular release. This prevents the overriding of Hibernate 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>hibernate-orm-bom</artifactId> <version>4.3.1.Final</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> And then declare your dependency on the Hibernate artifacts *without* a version.

<dependency>
    <groupId>com.covisint.core</groupId>
    <artifactId>hibernate-orm-bom</artifactId>
    <version>4.3.1.Final</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

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

  • Latest Stable: 4.3.1.Final

All Versions

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

Version Vulnerabilities Updated
4.3.x
hibernate-orm-bom-4.3.1.Final

How to add a POM dependency to Maven

POM as dependency in dependencyManagement

<dependency>
    <groupId>com.covisint.core</groupId>
    <artifactId>hibernate-orm-bom</artifactId>
    <version>4.3.1.Final</version>
</dependency>

Advertisement