Updated documentation
[hibernate4-maven-plugin] / src / site / xhtml / skip.xhtml
index 51a20af..e25ed0e 100644 (file)
@@ -5,7 +5,7 @@
  </head>
  <body>
   <p>
-  In most use-cases, the hibernate4-maven-plugin is used to create a
+  In most use-cases, the hibernate-maven-plugin is used to create a
   test-database automatically. In this use-cases, it is very likely, that it
   will result in mistakes/errors, if the goal is executed, when the tests
   are skipped.
   the production-database, in order to run other tests, like starting a
   local webserver with the
   <a href="http://wiki.eclipse.org/Jetty/Feature/Jetty_Maven_Plugin">jetty-maven-plugin</a>.
-  If the export-goal would be executed in such a scenario, it might erase the
+  If the drop-goal would be executed in such a scenario, it might erase the
   hole production-database, which is not very desireable.
   </p>
   <p>
   Because of this, the configuration-parameter <code>skip</code> defaults to the value
   of the proptery <code>maven.test.skip</code>. This way, the execution of the
-  hibernate4-maven-plugin is skipped automatically, when the tests are
+  hibernate-maven-plugin is skipped automatically, when the tests are
   skipped. Think of it as a build-in security-belt.
   </p>
   <p>
-  If you do not like that, because you need the plugin to always execute the
-  export-goal, even if the tests are skipped you can configure that explicitly,
+  If you do not like that, because you need the plugin to always,
+  even if the tests are skipped you can configure that explicitly,
   by setting the configuration-parameter <code>skip</code> to false:
   </p>
   <pre class="prettyprint linenums lang-html">
 &lt;plugin&gt;
   &lt;groupId&gt;de.juplo&lt;/groupId&gt;
-  &lt;artifactId&gt;hibernate4-maven-plugin&lt;/artifactId&gt;
+  &lt;artifactId&gt;hibernate-maven-plugin&lt;/artifactId&gt;
   ...
   &lt;configuration&gt;
     &lt;skip&gt;false&lt;/skip&gt;
   &lt;/configuration&gt;
 &lt;/plugin&gt;</pre>
   <p>
-  Or, if you want the export-goal to be executed by default and to be skipped
+  Or, if you want the plugin to be executed by default and to be skipped
   if you say so, you can bind the value of the configuration-parameter
   <code>skip</code> to a custom property. For example:
   </p>
   <pre class="prettyprint linenums lang-html">
 &lt;plugin&gt;
   &lt;groupId&gt;de.juplo&lt;/groupId&gt;
-  &lt;artifactId&gt;hibernate4-maven-plugin&lt;/artifactId&gt;
+  &lt;artifactId&gt;hibernate-maven-plugin&lt;/artifactId&gt;
   ...
   &lt;configuration&gt;
     &lt;skip&gt;${foo.bar}&lt;/skip&gt;
   &lt;/configuration&gt;
 &lt;/plugin&gt;</pre>
   <p>
-  This way, the export-goal would be skipped, if you set the property
+  This way, the plugin would be skipped, if you set the property
   <code>foo.bar</code> to <code>true</code>. For example, if you specify <code>-Dfoo.bar=true</code>
   on the command-line.
   </p>