---
title: Hibernate Maven Plugin
weight: 0
+outputs:
+ - html
url: /hibernate-maven-plugin/
layout: article
params:
Doing so, the only additionally configuration needed, to activat the plugin
is the following entry in the <code>plugins</code>-section of your <code>pom.xml</code>:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
</executions>
</plugin>
-{{< /highlight >}}</div>
+{{< /highlight >}}</div></div>
<p>
This would create the configured database.
If you want it to be droped beforehand, you have to add the goal
<code>drop</code>:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
</executions>
</plugin>
-{{< /highlight >}}</div>
+{{< /highlight >}}</div></div>
<p>
A correspondin goal for the command <code>update</code> is missing in this
to use.
A simple example <code>hibernate.properties</code>-file may look like this:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
hibernate.dialect=org.hibernate.dialect.H2Dialect
hibernate.connection.url=jdbc:h2:file:./target/db
hibernate.connection.driver_class=org.h2.Driver
hibernate.connection.username=sa
hibernate.connection.password=
-{{< /highlight >}}</div>
+{{< /highlight >}}</div></div>
<p>
But be aware, that using this configuration-approach the database-url,
A better approach is, to specify a different url for testing like in the
following snippet:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
</configuration>
</plugin>
-{{< /highlight >}}</div>
+{{< /highlight >}}</div></div>
<p>
Configuration properties, that are set in the <code>configuration</code>-section
The equivalent of the configuration from the last section would look
like this:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
</configuration>
</plugin>
-{{< /highlight >}}</div>
+{{< /highlight >}}</div></div>
<p>
The parameter <b>hibernateProperties</b> (name of the hibernate-properties-file
If you need to overwrite plugin-configuration-values with
maven-properties, you can use maven-properties in the plugin-configuration:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
</configuration>
</plugin>
-{{< /highlight >}}</div></section>
+{{< /highlight >}}</div></div></section>
</div>
<!-- PREPARING ROOT-ENTRY - name: Hibernate Maven Plugin ref: index.html -->
<!-- READING MENU - name: Project Documentation ref: reports -->
enabled.
For example, by executing:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
mvn -X compile hibernate:create
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
<p>
(The <code>compile</code> might be necessary, because <code>hibernate-maven-plugin</code>
you can force it to do so, if you set the parameter <code>force</code> to
<code>true</code>:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
<force>true</force>
</configuration>
</plugin>
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
<p>
Or you may specify <code>-Dhibernate.schema.force=true</code> at the command line,
<code>-Dhibernate.schema.execute=false</code> or with the following
configuration:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<configuration>
<execute>false</execute>
</configuration>
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
<p>
But even when no database is to be created, hibernate always needs to know
Since it will not be able to see the needed dependency, it will fail with
an error-message like:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
[INFO] Gathered hibernate-configuration (turn on debugging for details):
[INFO] hibernate.connection.username = sa
[INFO] hibernate.connection.password =
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
<p>
A quick workaround for this error would be, to delete the runtime-constraint
A much cleaner way is, to (additionally) ad the dependency, to the
plugin-definition:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
</dependency>
</dependencies>
</plugin>
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
<p>
This is also the best way, if you use a different jdbc-driver for
For example, the dbunit-plugin can be configured to skip its excecution, if
hibernate-maven-plugin was skipped like this:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>dbunit-maven-plugin</artifactId>
<skip>${hibernate.schema.skipped}</skip>
</configuration>
</plugin>
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
</section><section>
<h2><a name="The_database_will_not_be_recreated_after_a_manual_drop.2Fclean"></a>The database will not be recreated after a manual drop/clean</h2>
unnecessary drop-create-cycle might take a long time. The plugin will
report that like this:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
[INFO] No modified annotated classes found and dialect unchanged.
[INFO] Skipping schema generation!
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
<p>
If one always uses <code>mvn clean</code> for cleanup, this will not happen.
Otherwise the recreation must be <a href="./force.html">forced</a>:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
mvn hibernate:create -Dhibernate.schema.force=true
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
</section><section>
<h2><a name="The_hibernate:create_goal_is_not_executed.2C_when_tests_are_skipped"></a>The hibernate:create goal is not executed, when tests are skipped</h2>
<code>maven.test.skip</code> is set to <code>true</code>. If you need it to be always
executed, you can configure that explicitly like this:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
<skip>false</skip>
</configuration>
</plugin>
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
<p>
Background-information for this design-decission can be found on the extra
or set <code>scanDependencies</code> to <code>none</code> in the configuration
of the plugin like this:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
<scanDependencies>none</scanDependencies>
</configuration>
</plugin>
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
</section><section>
<h2><a name="No_annotated_classes_found"></a>No annotated classes found</h2>
<p>
Example configuration for two goals:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<executions>
<execution>
<id>Create Drop-Schema</id>
</execution>
</executions>
-{{< /highlight >}}</div></section>
+{{< /highlight >}}</div></div></section>
</div>
<!-- PREPARING ROOT-ENTRY - name: Hibernate Maven Plugin ref: index.html -->
<!-- READING MENU - name: Project Documentation ref: reports -->
even if the tests are skipped you can configure that explicitly,
by setting the configuration-parameter <code>skip</code> to false:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
<skip>false</skip>
</configuration>
</plugin>
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
<p>
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>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
<skip>${foo.bar}</skip>
</configuration>
</plugin>
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
<p>
This way, the plugin would be skipped, if you set the property
---
title: Hibernate Maven Plugin
weight: 0
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/
layout: article
params:
- canonical: hibernate-maven-plugin/
+ canonical: /hibernate-maven-plugin/
---
<div id="sili-body">
<h1>Hibernate Maven Plugin</h1><section>
---
title: Configuration Examples
weight: 20
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html
layout: article
params:
- canonical: hibernate-maven-plugin/configuration.html
+ canonical: /hibernate-maven-plugin/configuration.html
---
<div id="sili-body">
<h1>Configuration Examples</h1><section>
Doing so, the only additionally configuration needed, to activat the plugin
is the following entry in the <code>plugins</code>-section of your <code>pom.xml</code>:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
</executions>
</plugin>
-{{< /highlight >}}</div>
+{{< /highlight >}}</div></div>
<p>
This would create the configured database.
If you want it to be droped beforehand, you have to add the goal
<code>drop</code>:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
</executions>
</plugin>
-{{< /highlight >}}</div>
+{{< /highlight >}}</div></div>
<p>
A correspondin goal for the command <code>update</code> is missing in this
to use.
A simple example <code>hibernate.properties</code>-file may look like this:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
hibernate.dialect=org.hibernate.dialect.H2Dialect
hibernate.connection.url=jdbc:h2:file:./target/db
hibernate.connection.driver_class=org.h2.Driver
hibernate.connection.username=sa
hibernate.connection.password=
-{{< /highlight >}}</div>
+{{< /highlight >}}</div></div>
<p>
But be aware, that using this configuration-approach the database-url,
A better approach is, to specify a different url for testing like in the
following snippet:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
</configuration>
</plugin>
-{{< /highlight >}}</div>
+{{< /highlight >}}</div></div>
<p>
Configuration properties, that are set in the <code>configuration</code>-section
The equivalent of the configuration from the last section would look
like this:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
</configuration>
</plugin>
-{{< /highlight >}}</div>
+{{< /highlight >}}</div></div>
<p>
The parameter <b>hibernateProperties</b> (name of the hibernate-properties-file
If you need to overwrite plugin-configuration-values with
maven-properties, you can use maven-properties in the plugin-configuration:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
</configuration>
</plugin>
-{{< /highlight >}}</div></section>
+{{< /highlight >}}</div></div></section>
</div>
<!-- PREPARING ROOT-ENTRY - name: Hibernate Maven Plugin ref: index.html -->
<!-- READING MENU - name: Project Documentation ref: reports -->
---
title: Enable Debugging-Output
weight: 25
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/debugging.html
layout: article
params:
- canonical: hibernate-maven-plugin/debugging.html
+ canonical: /hibernate-maven-plugin/debugging.html
---
<div id="sili-body">
<h1>Enable Debugging-Output</h1>
enabled.
For example, by executing:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
mvn -X compile hibernate:create
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
<p>
(The <code>compile</code> might be necessary, because <code>hibernate-maven-plugin</code>
---
title: Force Exceution
weight: 27
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/force.html
layout: article
params:
- canonical: hibernate-maven-plugin/force.html
+ canonical: /hibernate-maven-plugin/force.html
---
<div id="sili-body">
<h1>Force Execution</h1>
you can force it to do so, if you set the parameter <code>force</code> to
<code>true</code>:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
<force>true</force>
</configuration>
</plugin>
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
<p>
Or you may specify <code>-Dhibernate.schema.force=true</code> at the command line,
---
title: Known Pitfalls (FAQ)
weight: 28
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pitfalls.html
layout: article
params:
- canonical: hibernate-maven-plugin/pitfalls.html
+ canonical: /hibernate-maven-plugin/pitfalls.html
---
<div id="sili-body">
<h1>Known Pitfalls (FAQ)</h1><section>
<code>-Dhibernate.schema.execute=false</code> or with the following
configuration:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<configuration>
<execute>false</execute>
</configuration>
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
<p>
But even when no database is to be created, hibernate always needs to know
Since it will not be able to see the needed dependency, it will fail with
an error-message like:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
[INFO] Gathered hibernate-configuration (turn on debugging for details):
[INFO] hibernate.connection.username = sa
[INFO] hibernate.connection.password =
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
<p>
A quick workaround for this error would be, to delete the runtime-constraint
A much cleaner way is, to (additionally) ad the dependency, to the
plugin-definition:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
</dependency>
</dependencies>
</plugin>
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
<p>
This is also the best way, if you use a different jdbc-driver for
For example, the dbunit-plugin can be configured to skip its excecution, if
hibernate-maven-plugin was skipped like this:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>dbunit-maven-plugin</artifactId>
<skip>${hibernate.schema.skipped}</skip>
</configuration>
</plugin>
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
</section><section>
<h2><a name="The_database_will_not_be_recreated_after_a_manual_drop.2Fclean"></a>The database will not be recreated after a manual drop/clean</h2>
unnecessary drop-create-cycle might take a long time. The plugin will
report that like this:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
[INFO] No modified annotated classes found and dialect unchanged.
[INFO] Skipping schema generation!
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
<p>
If one always uses <code>mvn clean</code> for cleanup, this will not happen.
Otherwise the recreation must be <a href="./force.html">forced</a>:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
mvn hibernate:create -Dhibernate.schema.force=true
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
</section><section>
<h2><a name="The_hibernate:create_goal_is_not_executed.2C_when_tests_are_skipped"></a>The hibernate:create goal is not executed, when tests are skipped</h2>
<code>maven.test.skip</code> is set to <code>true</code>. If you need it to be always
executed, you can configure that explicitly like this:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
<skip>false</skip>
</configuration>
</plugin>
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
<p>
Background-information for this design-decission can be found on the extra
or set <code>scanDependencies</code> to <code>none</code> in the configuration
of the plugin like this:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
<scanDependencies>none</scanDependencies>
</configuration>
</plugin>
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
</section><section>
<h2><a name="No_annotated_classes_found"></a>No annotated classes found</h2>
<p>
Example configuration for two goals:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<executions>
<execution>
<id>Create Drop-Schema</id>
</execution>
</executions>
-{{< /highlight >}}</div></section>
+{{< /highlight >}}</div></div></section>
</div>
<!-- PREPARING ROOT-ENTRY - name: Hibernate Maven Plugin ref: index.html -->
<!-- READING MENU - name: Project Documentation ref: reports -->
---
title: Project Information
weight: 1
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info.html
layout: article
params:
- canonical: hibernate-maven-plugin/project-info.html
+ canonical: /hibernate-maven-plugin/project-info.html
---
<div id="sili-body">
<section>
---
title: CI Management
weight: 2
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/ci-management.html
layout: article
params:
- canonical: hibernate-maven-plugin/ci-management.html
+ canonical: /hibernate-maven-plugin/ci-management.html
---
<div id="sili-body">
<section><a name="Overview"></a>
---
title: Dependencies
weight: 3
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/dependencies.html
layout: article
params:
- canonical: hibernate-maven-plugin/dependencies.html
+ canonical: /hibernate-maven-plugin/dependencies.html
---
<div id="sili-body">
<section><a name="Project_Dependencies"></a>
---
title: Maven Coordinates
weight: 4
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/dependency-info.html
layout: article
params:
- canonical: hibernate-maven-plugin/dependency-info.html
+ canonical: /hibernate-maven-plugin/dependency-info.html
---
<div id="sili-body">
<section><a name="Maven_Coordinates"></a>
---
title: Distribution Management
weight: 5
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/distribution-management.html
layout: article
params:
- canonical: hibernate-maven-plugin/distribution-management.html
+ canonical: /hibernate-maven-plugin/distribution-management.html
---
<div id="sili-body">
<section><a name="Overview"></a>
---
title: Licenses
weight: 6
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/licenses.html
layout: article
params:
- canonical: hibernate-maven-plugin/licenses.html
+ canonical: /hibernate-maven-plugin/licenses.html
---
<div id="sili-body">
<section><a name="Overview"></a>
---
title: Plugin Management
weight: 7
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/plugin-management.html
layout: article
params:
- canonical: hibernate-maven-plugin/plugin-management.html
+ canonical: /hibernate-maven-plugin/plugin-management.html
---
<div id="sili-body">
<section><a name="Project_Plugin_Management"></a>
---
title: Plugins
weight: 8
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/plugins.html
layout: article
params:
- canonical: hibernate-maven-plugin/plugins.html
+ canonical: /hibernate-maven-plugin/plugins.html
---
<div id="sili-body">
<section><a name="Project_Build_Plugins"></a>
---
title: Source Code Management
weight: 9
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/scm.html
layout: article
params:
- canonical: hibernate-maven-plugin/scm.html
+ canonical: /hibernate-maven-plugin/scm.html
---
<div id="sili-body">
<section><a name="Overview"></a>
---
title: Summary
weight: 10
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/summary.html
layout: article
params:
- canonical: hibernate-maven-plugin/summary.html
+ canonical: /hibernate-maven-plugin/summary.html
---
<div id="sili-body">
<section><a name="Project_Summary"></a>
---
title: Team
weight: 11
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/team.html
layout: article
params:
- canonical: hibernate-maven-plugin/team.html
+ canonical: /hibernate-maven-plugin/team.html
---
<div id="sili-body">
<section><a name="Project_Team"></a>
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports.html
layout: article
params:
- canonical: hibernate-maven-plugin/project-reports.html
+ canonical: /hibernate-maven-plugin/project-reports.html
---
<div id="sili-body">
<section>
---
title: CPD
weight: 17
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/cpd.html
layout: article
params:
- canonical: hibernate-maven-plugin/cpd.html
+ canonical: /hibernate-maven-plugin/cpd.html
---
<div id="sili-body">
<section>
---
title: Plugin Documentation
weight: 19
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/plugin-info.html
layout: article
params:
- canonical: hibernate-maven-plugin/plugin-info.html
+ canonical: /hibernate-maven-plugin/plugin-info.html
---
<div id="sili-body">
<section>
---
title: Goal — hibernate:create
weight: 21
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/create-mojo.html
layout: article
params:
- canonical: hibernate-maven-plugin/create-mojo.html
+ canonical: /hibernate-maven-plugin/create-mojo.html
---
<div id="sili-body">
---
title: Goal — hibernate:drop
weight: 23
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/drop-mojo.html
layout: article
params:
- canonical: hibernate-maven-plugin/drop-mojo.html
+ canonical: /hibernate-maven-plugin/drop-mojo.html
---
<div id="sili-body">
---
title: Goal — hibernate:help
weight: 24
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/help-mojo.html
layout: article
params:
- canonical: hibernate-maven-plugin/help-mojo.html
+ canonical: /hibernate-maven-plugin/help-mojo.html
---
<div id="sili-body">
---
title: Goal — hibernate:update
weight: 22
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/update-mojo.html
layout: article
params:
- canonical: hibernate-maven-plugin/update-mojo.html
+ canonical: /hibernate-maven-plugin/update-mojo.html
---
<div id="sili-body">
---
title: PMD
weight: 18
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pmd.html
layout: article
params:
- canonical: hibernate-maven-plugin/pmd.html
+ canonical: /hibernate-maven-plugin/pmd.html
---
<div id="sili-body">
<section>
---
title: Skipping Execution
weight: 26
+outputs:
+ - html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/skip.html
layout: article
params:
- canonical: hibernate-maven-plugin/skip.html
+ canonical: /hibernate-maven-plugin/skip.html
---
<div id="sili-body">
<h1>Skipping Execution</h1>
even if the tests are skipped you can configure that explicitly,
by setting the configuration-parameter <code>skip</code> to false:
</p>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
<skip>false</skip>
</configuration>
</plugin>
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
<p>
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>
-
-<div>
-{{< highlight guess >}}
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
<skip>${foo.bar}</skip>
</configuration>
</plugin>
-{{< /highlight >}}</div>
+
+{{< /highlight >}}</div></div>
<p>
This way, the plugin would be skipped, if you set the property
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>All Classes (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>All Classes (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Constant Field Values (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>AbstractSchemaMojo (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>CreateMojo (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>DropMojo (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>HelpMojo (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ModificationTracker (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>MutableClassLoader (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>UpdateMojo (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.juplo.plugins.hibernate.AbstractSchemaMojo (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.juplo.plugins.hibernate.CreateMojo (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.juplo.plugins.hibernate.DropMojo (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.juplo.plugins.hibernate.HelpMojo (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.juplo.plugins.hibernate.ModificationTracker (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.juplo.plugins.hibernate.MutableClassLoader (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.juplo.plugins.hibernate.UpdateMojo (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.juplo.plugins.hibernate (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.juplo.plugins.hibernate (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.juplo.plugins.hibernate Class Hierarchy (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package de.juplo.plugins.hibernate (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Deprecated List (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>API Help (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Index (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Hibernate Maven Plugin 2.1.1 API</title>
<script type="text/javascript">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:38 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:02 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Class Hierarchy (Hibernate Maven Plugin 2.1.1 API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:36 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:00 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>All Classes (Hibernate Maven Plugin 2.1.1 Test API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:36 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:00 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>All Classes (Hibernate Maven Plugin 2.1.1 Test API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:36 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:00 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Constant Field Values (Hibernate Maven Plugin 2.1.1 Test API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:36 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:00 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>FileComparator (Hibernate Maven Plugin 2.1.1 Test API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:36 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:00 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.juplo.test.FileComparator (Hibernate Maven Plugin 2.1.1 Test API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:36 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:00 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.juplo.test (Hibernate Maven Plugin 2.1.1 Test API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:36 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:00 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.juplo.test (Hibernate Maven Plugin 2.1.1 Test API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:36 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:00 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.juplo.test Class Hierarchy (Hibernate Maven Plugin 2.1.1 Test API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:36 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:00 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package de.juplo.test (Hibernate Maven Plugin 2.1.1 Test API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:36 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:00 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Deprecated List (Hibernate Maven Plugin 2.1.1 Test API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:36 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:00 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>API Help (Hibernate Maven Plugin 2.1.1 Test API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:36 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:00 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Index (Hibernate Maven Plugin 2.1.1 Test API)</title>
<meta name="date" content="2026-04-29">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:36 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:00 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Hibernate Maven Plugin 2.1.1 Test API</title>
<script type="text/javascript">
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 10:48:36 UTC 2026 -->
+<!-- Generated by javadoc (1.8.0_342) on Wed Apr 29 13:49:00 UTC 2026 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Class Hierarchy (Hibernate Maven Plugin 2.1.1 Test API)</title>
<meta name="date" content="2026-04-29">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>Alle Klassen und Schnittstellen (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>Alle Packages (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>Konstantenfeldwerte (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>AbstractSchemaMojo (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>CreateMojo (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>DropMojo (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>HelpMojo (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>ModificationTracker (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>MutableClassLoader (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>UpdateMojo (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>Verwendungsweise von Klasse de.juplo.plugins.hibernate.AbstractSchemaMojo (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>Verwendungsweise von Klasse de.juplo.plugins.hibernate.CreateMojo (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>Verwendungsweise von Klasse de.juplo.plugins.hibernate.DropMojo (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>Verwendungsweise von Klasse de.juplo.plugins.hibernate.HelpMojo (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>Verwendungsweise von Klasse de.juplo.plugins.hibernate.ModificationTracker (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>Verwendungsweise von Klasse de.juplo.plugins.hibernate.MutableClassLoader (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>Verwendungsweise von Klasse de.juplo.plugins.hibernate.UpdateMojo (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>de.juplo.plugins.hibernate (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>de.juplo.plugins.hibernate Klassenhierarchie (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>Verwendungsweise von Package de.juplo.plugins.hibernate (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>API-Hilfe (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>Index (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>Hibernate Maven Plugin 2.1.2-SNAPSHOT API</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>Klassenhierarchie (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:13 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:42 CEST 2026 -->
<title>Suchen (Hibernate Maven Plugin 2.1.2-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:10 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:38 CEST 2026 -->
<title>Alle Klassen und Schnittstellen (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:10 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:38 CEST 2026 -->
<title>Alle Packages (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:10 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:38 CEST 2026 -->
<title>FileComparator (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:10 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:38 CEST 2026 -->
<title>Verwendungsweise von Klasse de.juplo.test.FileComparator (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:10 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:38 CEST 2026 -->
<title>de.juplo.test (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:10 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:38 CEST 2026 -->
<title>de.juplo.test Klassenhierarchie (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:10 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:38 CEST 2026 -->
<title>Verwendungsweise von Package de.juplo.test (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:10 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:38 CEST 2026 -->
<title>API-Hilfe (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:10 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:38 CEST 2026 -->
<title>Index (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:10 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:38 CEST 2026 -->
<title>Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:10 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:38 CEST 2026 -->
<title>Klassenhierarchie (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 11:52:10 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:51:38 CEST 2026 -->
<title>Suchen (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">