1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8 The hibernate-maven-plugin computes MD5-sums for all found annotated
9 classes and stores them together with the generated schema.
10 If no classes were changed or added and the dialect wasn't changed too, it
11 automatically skips the configured schema-export, to speed up the development
15 The plugin signals, that the execution was skipped by setting the maven
16 property <code>${hibernate.schema.skipped}</code> to <code>true</code>.
17 This may be helpful, because other plugins like
18 <a href="http://mojo.codehaus.org/dbunit-maven-plugin/">dbunit-plugin</a>
19 <a href="./pitfalls.html#fails">may fail</a>, when the execution is skipped.
22 If you need the hibernate-maven-plugin to <em>never skip execution automatically</em>,
23 you can force it to do so, if you set the parameter <code>force</code> to
26 <pre class="prettyprint linenums lang-html">
28 <groupId>de.juplo</groupId>
29 <artifactId>hibernate-maven-plugin</artifactId>
30 <version>${project.version}</version>
32 <force>true</force>
33 </configuration>
36 Or you may specify <code>-Dhibernate.schema.force=true</code> at the command line,
37 if you want to force hibernate-maven-plugin only once.