X-Git-Url: https://juplo.de/gitweb/?p=hibernate4-maven-plugin;a=blobdiff_plain;f=src%2Fsite%2Fxhtml%2Fforce.xhtml;h=ee3586f74a216676c2e01db19ce800449a4e5132;hp=0a94070e1a289eca80af2e8b9a39c5f31d413a79;hb=149a94d09dfb678e4be39aefb20dbf86ef28c416;hpb=64900890db2575b7a28790c5e4d5f45083ee94b3;ds=sidebyside diff --git a/src/site/xhtml/force.xhtml b/src/site/xhtml/force.xhtml index 0a94070e..ee3586f7 100644 --- a/src/site/xhtml/force.xhtml +++ b/src/site/xhtml/force.xhtml @@ -4,37 +4,39 @@ +

Force Execution

- The hibernate4-maven-plugin computes MD5-sums for all found annotated + The hibernate-maven-plugin computes MD5-sums for all found annotated classes and stores them together with the generated schema. If no classes were changed or added and the dialect wasn't changed too, it - automatically skips the configured schema-export, to speed up the development - cycle. + automatically skips the configured SQL-generation — and more + important in this respect — the execution of the generated SQL, + to speed up the development cycle.

The plugin signals, that the execution was skipped by setting the maven - property $\{hibernate.export.skipped\} to true. + property ${hibernate.schema.skipped} to true. This may be helpful, because other plugins like dbunit-plugin may fail, when the execution is skipped.

- If you need the hibernate4-maven-plugin to <never skip execution automatically>, + If you need the hibernate-maven-plugin to never skip execution automatically, you can force it to do so, if you set the parameter force to true:

 <plugin>
   <groupId>de.juplo</groupId>
-  <artifactId>hibernate4-maven-plugin</artifactId>
+  <artifactId>hibernate-maven-plugin</artifactId>
   <version>${project.version}</version>
   <configuration>
     <force>true</force>
   </configuration>
 </plugin>

- Or you may specify -Dhibernate.export.force=true at the command line, - if you want to force hibernate4-maven-plugin only once. + Or you may specify -Dhibernate.schema.force=true at the command line, + if you want to force hibernate-maven-plugin only once.