| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| readme.txt | 2013-12-11 | 799 Bytes | |
| hibernate4-maven-plugin-4.2.7-dependencies.zip | 2013-12-11 | 21.4 MB | |
| hibernate4-maven-plugin-4.2.7-sources.jar | 2013-12-10 | 24.9 kB | |
| hibernate4-maven-plugin-4.2.7.pom | 2013-12-10 | 7.7 kB | |
| hibernate4-maven-plugin-4.2.7.jar | 2013-12-10 | 32.2 kB | |
| Totals: 5 Items | 21.5 MB | 0 | |
Tested with Maven 3.0.4
<!-- run "mvn hibernate4:hbm2ddl" to generate a schema -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>hibernate4-maven-plugin</artifactId>
<version>4.2.7</version>
<configuration>
<hibernatetool destdir="target/ddl">
<configuration configurationfile="hibernate.cfg.xml"
namingstrategy="org.hibernate.cfg.ImprovedNamingStrategy"/>
<hbm2ddl export="false" drop="true" create="true" format="true"
outputfilename="example.ddl"/>
</hibernatetool>
</configuration>
</plugin>