Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Section
Column
Document Properties Marker
overridefalse
Short DescriptionProvides a very simple way of generating DDL scripts from a JPA unit. It is therefore a very limited version of the hibernate3-maven-plugin. 
Doctypesectionhide
NameHibernate 4 Maven Plugin 
Parent
Parent Property
property-nameName
 
Subject
Name List
doctypesubject
propertySubject
 
Categories
Name List
doctypecategory
propertyCategories
 
Tags
Tag List
namesMaven Plugin
propertyTags
hide
Iteration

Iteration
valuefinished

hide
Site URLhibernate4-maven-plugin/hide
SiteSite 
Short NameHibernate 4hide
Project Logo
hide
Small Project Logo

hide
Plugin Logo
Display Property
property-nameProject Logo

Display Property
property-nameShort Name
hide, is-block
Small Plugin Logo

Display Property
property-nameSmall Project Logo

Display Property
property-nameShort Name

hide, is-block
LicenseAPL 2.0 
Status
Status
subtletrue
colourGreen
titleProduction
hide
Sort Key000140hide
project-group-idde.smartics.maven.pluginhide
project-artifact-idhibernate4-maven-pluginhide
project-version0.1.2hide
Column

 

Display Property
property-nameProject Logo

Section
show-titlefalse
titleDescription

The Hibernate 4 Maven Plugin provides a very simple way of generating DDL scripts from a JPA unit. It is therefore a very limited version of the Hibernate 3 Maven Plugin.

This plugin basically supports this configuration:

Code Block Placeholder
code-languageHTML and XML
<plugin>
  <groupId>${project-group-id}</groupId>
  <artifactId>${project-artifact-id}</artifactId>
  <version>${project-version}</version>
  <executions>
    <execution>
      <id>export</id>
      <goals>
        <goal>hbm2ddl</goal>
      </goals>
    </execution>
  </executions>
  <configuration>
    <unitName>jpa-unitname</unitName>
  </configuration>
</plugin>

...