MVN

org.hibernate : hibernate-maven-plugin

Maven & Gradle

Jan 22, 2014

A Hibernate O/RM module · A module of the Hibernate O/RM project

<dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-maven-plugin</artifactId>
    <version>4.3.1.Final</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.hibernate : hibernate-maven-plugin to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 4.3.1.Final
  • Latest Beta: 4.3.0.Beta5

All Versions

Choose a version of org.hibernate : hibernate-maven-plugin to add to Maven or Gradle - All Versions:

  • Version Updated
  • hibernate-maven-plugin-4.3.1.Final

    Jan 22, 2014
  • hibernate-maven-plugin-4.3.0.Final

    Dec 16, 2013
  • hibernate-maven-plugin-4.3.0.CR2

    Dec 05, 2013
  • hibernate-maven-plugin-4.3.0.CR1

    Nov 20, 2013
  • hibernate-maven-plugin-4.3.0.Beta5

    Oct 09, 2013
  • hibernate-maven-plugin-4.3.0.Beta4

    Sep 12, 2013
  • hibernate-maven-plugin-3.5.0.Beta-1

    Aug 20, 2009
  • hibernate-maven-plugin-3.3.2.GA

    Jun 24, 2009

How to add a dependency to Maven

Add the following org.hibernate : hibernate-maven-plugin maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-maven-plugin</artifactId>
    <version>4.3.1.Final</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.hibernate : hibernate-maven-plugin gradle dependency to your build.gradle file:

implementation 'org.hibernate:hibernate-maven-plugin:4.3.1.Final'

Gradle Kotlin DSL: Add the following org.hibernate : hibernate-maven-plugin gradle kotlin dependency to your build.gradle.kts file:

implementation("org.hibernate:hibernate-maven-plugin:4.3.1.Final")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.hibernate : hibernate-maven-plugin sbt scala dependency to your build.sbt file:

libraryDependencies += "org.hibernate" % "hibernate-maven-plugin" % "4.3.1.Final"