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
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Wed Apr 29 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:54 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:15 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 13:34:51 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:11 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 13:34:51 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:11 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 13:34:51 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:11 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 13:34:51 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:11 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 13:34:51 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:11 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 13:34:51 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:11 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 13:34:51 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:11 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 13:34:51 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:11 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 13:34:51 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:11 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 13:34:51 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:11 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 13:34:51 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:11 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 13:34:51 CEST 2026 -->
+<!-- Generated by javadoc (21) on Wed Apr 29 15:40:11 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">