outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/
+layout: article
---
<div id="sili-body">
<h1>Hibernate Maven Plugin</h1><section>
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html
+layout: article
---
<div id="sili-body">
<h1>Configuration Examples</h1><section>
</p>
<div>
-<pre class="prettyprint linenums lang-html">
-<plugin>
- <groupId>de.juplo</groupId>
- <artifactId>hibernate-maven-plugin</artifactId>
- <version>2.1.2-SNAPSHOT</version>
- <executions>
- <execution>
- <goals>
- <goal>create</goal>
- </goals>
- </execution>
- </executions>
-</plugin>
-</pre></div>
+{{< highlight guess >}}
+
+<plugin>
+ <groupId>de.juplo</groupId>
+ <artifactId>hibernate-maven-plugin</artifactId>
+ <version>2.1.2-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>create</goal>
+ </goals>
+ </execution>
+ </executions>
+</plugin>
+
+{{< /highlight >}}</div>
<p>
This would create the configured database.
</p>
<div>
-<pre class="prettyprint linenums lang-html">
-<plugin>
- <groupId>de.juplo</groupId>
- <artifactId>hibernate-maven-plugin</artifactId>
- <version>2.1.2-SNAPSHOT</version>
- <executions>
- <execution>
- <goals>
- <goal>drop</goal>
- <goal>create</goal>
- </goals>
- </execution>
- </executions>
-</plugin>
-</pre></div>
+{{< highlight guess >}}
+
+<plugin>
+ <groupId>de.juplo</groupId>
+ <artifactId>hibernate-maven-plugin</artifactId>
+ <version>2.1.2-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>drop</goal>
+ <goal>create</goal>
+ </goals>
+ </execution>
+ </executions>
+</plugin>
+
+{{< /highlight >}}</div>
<p>
A correspondin goal for the command <code>update</code> is missing in this
</p>
<div>
-<pre class="prettyprint linenums lang-properties">
+{{< 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=
-</pre></div>
+
+{{< /highlight >}}</div>
<p>
But be aware, that using this configuration-approach the database-url,
</p>
<div>
-<pre class="prettyprint linenums lang-html">
-<plugin>
- <groupId>de.juplo</groupId>
- <artifactId>hibernate-maven-plugin</artifactId>
- <version>2.1.2-SNAPSHOT</version>
- <executions>
- <execution>
- <goals>
- <goal>drop</goal>
- <goal>create</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <url><![CDATA[jdbc:mysql://localhost/test-db]]></url>
- </configuration>
-</plugin>
-</pre></div>
+{{< highlight guess >}}
+
+<plugin>
+ <groupId>de.juplo</groupId>
+ <artifactId>hibernate-maven-plugin</artifactId>
+ <version>2.1.2-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>drop</goal>
+ <goal>create</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <url><![CDATA[jdbc:mysql://localhost/test-db]]></url>
+ </configuration>
+</plugin>
+
+{{< /highlight >}}</div>
<p>
Configuration properties, that are set in the <code>configuration</code>-section
the plugin-configuration, to be sure to have a separate database for
testing):
</p>
-
-<div>
-<pre class="prettyprint linenums lang-html">
-<p><properties> <hibernate.connection.driver_class>org.hsqldb.jdbcDriver</hibernate.connection.driver_class> <hibernate.dialect>org.hibernate.dialect.HSQLDialect</hibernate.dialect> <hibernate.connection.url><![CDATA[jdbc:hsqldb:res:org.my.path.production_db]]></hibernate.connection.url> <hibernate.connection.username>sa</hibernate.connection.username> <hibernate.connection.password></hibernate.connection.password> </properties></p>
-<p>…</p>
-<p><plugins></p>
-<p>…</p>
-<p><plugin> <groupId>de.juplo</groupId> <artifactId>hibernate-maven-plugin</artifactId> <version>2.1.2-SNAPSHOT</version> <executions> <execution> <goals> <goal>drop</goal> <goal>create</goal> </goals> </execution> </executions> <configuration> <url><![CDATA[jdbc:hsqldb:target/db/testdb;shutdown=true]]></url> </configuration> </plugin></p>
-<p><plugins></p>
- </pre></div>
+<div class="source">
+<div class="source">
+{{< highlight guess >}}
+<properties>
+ <hibernate.connection.driver_class>org.hsqldb.jdbcDriver</hibernate.connection.driver_class>
+ <hibernate.dialect>org.hibernate.dialect.HSQLDialect</hibernate.dialect>
+ <hibernate.connection.url><![CDATA[jdbc:hsqldb:res:org.my.path.production_db]]></hibernate.connection.url>
+ <hibernate.connection.username>sa</hibernate.connection.username>
+ <hibernate.connection.password></hibernate.connection.password>
+</properties>
+
+...
+
+<plugins>
+
+ ...
+
+ <plugin>
+ <groupId>de.juplo</groupId>
+ <artifactId>hibernate-maven-plugin</artifactId>
+ <version>2.1.2-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>drop</goal>
+ <goal>create</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <url><![CDATA[jdbc:hsqldb:target/db/testdb;shutdown=true]]></url>
+ </configuration>
+ </plugin>
+
+<plugins>
+
+{{< /highlight >}}</div></div>
<p>
This way, you can reuse the same properties to provide a
</p>
<div>
-<pre class="prettyprint linenums lang-html">
-<plugin>
- <groupId>de.juplo</groupId>
- <artifactId>hibernate-maven-plugin</artifactId>
- <version>2.1.2-SNAPSHOT</version>
- <executions>
- <execution>
- <goals>
- <goal>drop</goal>
- <goal>create</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <driver>org.hsqldb.jdbcDriver</driver>
- <dialect>org.hibernate.dialect.HSQLDialect</dialect>
- <url><![CDATA[jdbc:hsqldb:target/db/fotos;shutdown=true]]></url>
- <username>sa</username>
- <password></password>
- </configuration>
-</plugin>
-</pre></div>
+{{< highlight guess >}}
+
+<plugin>
+ <groupId>de.juplo</groupId>
+ <artifactId>hibernate-maven-plugin</artifactId>
+ <version>2.1.2-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>drop</goal>
+ <goal>create</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <driver>org.hsqldb.jdbcDriver</driver>
+ <dialect>org.hibernate.dialect.HSQLDialect</dialect>
+ <url><![CDATA[jdbc:hsqldb:target/db/fotos;shutdown=true]]></url>
+ <username>sa</username>
+ <password></password>
+ </configuration>
+</plugin>
+
+{{< /highlight >}}</div>
<p>
The parameter <b>hibernateProperties</b> (name of the hibernate-properties-file
</p>
<div>
-<pre class="prettyprint linenums lang-html">
-<plugin>
- <groupId>de.juplo</groupId>
- <artifactId>hibernate-maven-plugin</artifactId>
- <version>2.1.2-SNAPSHOT</version>
- <executions>
- <execution>
- <goals>
- <goal>drop</goal>
- <goal>create</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <password>${my-password-property}</password>
- </configuration>
-</plugin>
-</pre></div></section>
+{{< highlight guess >}}
+
+<plugin>
+ <groupId>de.juplo</groupId>
+ <artifactId>hibernate-maven-plugin</artifactId>
+ <version>2.1.2-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>drop</goal>
+ <goal>create</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <password>${my-password-property}</password>
+ </configuration>
+</plugin>
+
+{{< /highlight >}}</div></section>
</div>
<!-- PREPARING ROOT-ENTRY - name: Hibernate Maven Plugin ref: index.html -->
<!-- READING MENU - name: Project Documentation ref: reports -->
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/debugging.html
+layout: article
---
<div id="sili-body">
<h1>Enable Debugging-Output</h1>
</p>
<div>
-<pre class="prettyprint linenums lang-html">
-mvn -X compile hibernate:create</pre></div>
+{{< highlight guess >}}
+
+mvn -X compile hibernate:create
+{{< /highlight >}}</div>
<p>
(The <code>compile</code> might be necessary, because <code>hibernate-maven-plugin</code>
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/force.html
+layout: article
---
<div id="sili-body">
<h1>Force Execution</h1>
</p>
<div>
-<pre class="prettyprint linenums lang-html">
-<plugin>
- <groupId>de.juplo</groupId>
- <artifactId>hibernate-maven-plugin</artifactId>
- <version>2.1.2-SNAPSHOT</version>
- <configuration>
- <force>true</force>
- </configuration>
-</plugin></pre></div>
+{{< highlight guess >}}
+
+<plugin>
+ <groupId>de.juplo</groupId>
+ <artifactId>hibernate-maven-plugin</artifactId>
+ <version>2.1.2-SNAPSHOT</version>
+ <configuration>
+ <force>true</force>
+ </configuration>
+</plugin>
+{{< /highlight >}}</div>
<p>
Or you may specify <code>-Dhibernate.schema.force=true</code> at the command line,
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pitfalls.html
+layout: article
---
<div id="sili-body">
<h1>Known Pitfalls (FAQ)</h1><section>
</p>
<div>
-<pre class="prettyprint linenums lang-html">
-<configuration>
- <execute>false</execute>
-</configuration></pre></div>
+{{< highlight guess >}}
+
+<configuration>
+ <execute>false</execute>
+</configuration>
+{{< /highlight >}}</div>
<p>
But even when no database is to be created, hibernate always needs to know
</p>
<div>
-<pre class="prettyprint">
+{{< highlight guess >}}
+
[INFO] Gathered hibernate-configuration (turn on debugging for details):
[INFO] hibernate.connection.username = sa
[INFO] hibernate.connection.password =
[INFO] Finished at: Mon Mar 07 19:06:54 CET 2016
[INFO] Final Memory: 11M/215M
[INFO] ------------------------------------------------------------------------
-[ERROR] Failed to execute goal de.juplo:hibernate-maven-plugin:2.1.2-SNAPSHOT:drop (default) on project hibernate4-properties-test: Could not open the JDBC-connection: Unable to load class [org.h2.Driver]: Could not load requested class : org.h2.Driver -> [Help 1]
+[ERROR] Failed to execute goal de.juplo:hibernate-maven-plugin:2.1.2-SNAPSHOT:drop (default) on project hibernate4-properties-test: Could not open the JDBC-connection: Unable to load class [org.h2.Driver]: Could not load requested class : org.h2.Driver -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[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</pre></div>
+[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
+{{< /highlight >}}</div>
<p>
A quick workaround for this error would be, to delete the runtime-constraint
</p>
<div>
-<pre class="prettyprint linenums lang-html">
-<plugin>
- <groupId>de.juplo</groupId>
- <artifactId>hibernate-maven-plugin</artifactId>
- <version>2.1.2-SNAPSHOT</version>
- <executions>
- <execution>
- <goals>
- <goal>drop</goal>
- <goal>create</goal>
- </goals>
- </execution>
- </executions>
- <dependencies>
- <dependency>
- <groupId>org.hsqldb</groupId>
- <artifactId>hsqldb</artifactId>
- <version>2.2.8</version>
- </dependency>
- </dependencies>
-</plugin></pre></div>
+{{< highlight guess >}}
+
+<plugin>
+ <groupId>de.juplo</groupId>
+ <artifactId>hibernate-maven-plugin</artifactId>
+ <version>2.1.2-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>drop</goal>
+ <goal>create</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>org.hsqldb</groupId>
+ <artifactId>hsqldb</artifactId>
+ <version>2.2.8</version>
+ </dependency>
+ </dependencies>
+</plugin>
+{{< /highlight >}}</div>
<p>
This is also the best way, if you use a different jdbc-driver for
</p>
<div>
-<pre class="prettyprint linenums lang-html">
-<plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>dbunit-maven-plugin</artifactId>
- <configuration>
- <skip>${hibernate.schema.skipped}</skip>
- </configuration>
-</plugin></pre></div>
+{{< highlight guess >}}
+
+<plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>dbunit-maven-plugin</artifactId>
+ <configuration>
+ <skip>${hibernate.schema.skipped}</skip>
+ </configuration>
+</plugin>
+{{< /highlight >}}</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>
</p>
<div>
-<pre class="prettyprint">
+{{< highlight guess >}}
+
[INFO] No modified annotated classes found and dialect unchanged.
-[INFO] Skipping schema generation!</pre></div>
+[INFO] Skipping schema generation!
+{{< /highlight >}}</div>
<p>
If one always uses <code>mvn clean</code> for cleanup, this will not happen.
</p>
<div>
-<pre class="prettyprint">
-mvn hibernate:create -Dhibernate.schema.force=true</pre></div>
+{{< highlight guess >}}
+
+mvn hibernate:create -Dhibernate.schema.force=true
+{{< /highlight >}}</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>
</p>
<div>
-<pre class="prettyprint linenums lang-html">
-<plugin>
- <groupId>de.juplo</groupId>
- <artifactId>hibernate-maven-plugin</artifactId>
+{{< highlight guess >}}
+
+<plugin>
+ <groupId>de.juplo</groupId>
+ <artifactId>hibernate-maven-plugin</artifactId>
...
- <configuration>
- <skip>false</skip>
- </configuration>
-</plugin></pre></div>
+ <configuration>
+ <skip>false</skip>
+ </configuration>
+</plugin>
+{{< /highlight >}}</div>
<p>
Background-information for this design-decission can be found on the extra
</p>
<div>
-<pre class="prettyprint linenums lang-html">
-<plugin>
- <groupId>de.juplo</groupId>
- <artifactId>hibernate-maven-plugin</artifactId>
+{{< highlight guess >}}
+
+<plugin>
+ <groupId>de.juplo</groupId>
+ <artifactId>hibernate-maven-plugin</artifactId>
...
- <configuration>
- <scanDependencies>none</scanDependencies>
- </configuration>
-</plugin></pre></div>
+ <configuration>
+ <scanDependencies>none</scanDependencies>
+ </configuration>
+</plugin>
+{{< /highlight >}}</div>
</section><section>
<h2><a name="No_annotated_classes_found"></a>No annotated classes found</h2>
</p>
<div>
-<pre class="prettyprint linenums lang-html">
-<executions>
- <execution>
- <id>Create Drop-Schema</id>
- <phase>test-compile</phase>
- <goals>
- <goal>drop</goal>
- </goals>
- <configuration>
- <outputFile>db-schema/drop-schema.ddl</outputFile>
- </configuration>
- </execution>
- <execution>
- <id>Create Create-Schema</id>
- <phase>test-compile</phase>
- <goals>
- <goal>create</goal>
- </goals>
- <configuration>
- <outputFile>db-schema/create-schema.ddl</outputFile>
- </configuration>
- </execution>
-</executions>
-</pre></div></section>
+{{< highlight guess >}}
+
+<executions>
+ <execution>
+ <id>Create Drop-Schema</id>
+ <phase>test-compile</phase>
+ <goals>
+ <goal>drop</goal>
+ </goals>
+ <configuration>
+ <outputFile>db-schema/drop-schema.ddl</outputFile>
+ </configuration>
+ </execution>
+ <execution>
+ <id>Create Create-Schema</id>
+ <phase>test-compile</phase>
+ <goals>
+ <goal>create</goal>
+ </goals>
+ <configuration>
+ <outputFile>db-schema/create-schema.ddl</outputFile>
+ </configuration>
+ </execution>
+</executions>
+
+{{< /highlight >}}</div></section>
</div>
<!-- PREPARING ROOT-ENTRY - name: Hibernate Maven Plugin ref: index.html -->
<!-- READING MENU - name: Project Documentation ref: reports -->
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info.html
+layout: article
---
<div id="sili-body">
<section>
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/ci-management.html
+layout: article
---
<div id="sili-body">
<section><a name="Overview"></a>
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/dependencies.html
+layout: article
---
<div id="sili-body">
<section><a name="Project_Dependencies"></a>
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/dependency-info.html
+layout: article
---
<div id="sili-body">
<section><a name="Maven_Coordinates"></a>
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/distribution-management.html
+layout: article
---
<div id="sili-body">
<section><a name="Overview"></a>
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/licenses.html
+layout: article
---
<div id="sili-body">
<section><a name="Overview"></a>
<h2><a name="Project_Licenses"></a>Project Licenses</h2><section><a name="The_Apache_Software_License_Version_2.0"></a>
<h3><a name="The_Apache_Software_License.2C_Version_2.0"></a>The Apache Software License, Version 2.0</h3>
<p>A business-friendly OSS license</p>
+<p>Can't read the url [http://www.apache.org/licenses/LICENSE-2.0.txt] : Connect timed out</p></section></section>
</div>
<!-- PREPARING ROOT-ENTRY - name: Hibernate Maven Plugin ref: index.html -->
<!-- READING MENU - name: Project Documentation ref: reports -->
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/plugin-management.html
+layout: article
---
<div id="sili-body">
<section><a name="Project_Plugin_Management"></a>
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/plugins.html
+layout: article
---
<div id="sili-body">
<section><a name="Project_Build_Plugins"></a>
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/scm.html
+layout: article
---
<div id="sili-body">
<section><a name="Overview"></a>
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/summary.html
+layout: article
---
<div id="sili-body">
<section><a name="Project_Summary"></a>
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/team.html
+layout: article
---
<div id="sili-body">
<section><a name="Project_Team"></a>
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports.html
+layout: article
---
<div id="sili-body">
<section>
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
title: JavaDocs
weight: 14
---
-<script type="text/javascript">window.location.replace('../apidocs/index.html')</script>
+<script type="text/javascript">window.location.replace('../../apidocs/index.html')</script>
<noscript><p>JavaScript is deactivated.</p></noscript>
-<p><a href="../apidocs/index.html">View JavaDocs</a></p>
+<p><a href="../../apidocs/index.html">View JavaDocs</a></p>
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/cpd.html
+layout: article
---
<div id="sili-body">
<section>
<td><a href="./xref/de/juplo/plugins/hibernate/DropMojo.html#L41">41</a></td></tr>
<tr class="b"><td colspan='2'>
<div>
-<pre>public class CreateMojo extends AbstractSchemaMojo
+{{< highlight guess >}}
+public class CreateMojo extends AbstractSchemaMojo
{
/**
* Output file.
- * <p>
+ * <p>
* If the specified filename is not absolut, the file will be created
* relative to the project build directory
- * (<code>project.build.directory</code>).
+ * (<code>project.build.directory</code>).
*
- * @parameter property="hibernate.schema.create" default-value="create.sql"
+ * @parameter property="hibernate.schema.create" default-value="create.sql"
* @since 1.0
*/
private String outputFile;
}
};
- tool.getSchemaCreator(config).doCreation(metadata, options, source, target);</pre></div></td></tr></table></section>
+ tool.getSchemaCreator(config).doCreation(metadata, options, source, target);
+{{< /highlight >}}</div></td></tr></table></section>
</div>
<!-- PREPARING ROOT-ENTRY - name: Hibernate Maven Plugin ref: index.html -->
<!-- READING MENU - name: Project Documentation ref: reports -->
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/plugin-info.html
+layout: article
---
<div id="sili-body">
<section>
<h3><a name="Usage"></a>Usage</h3><a name="Usage"></a>
<p>You should specify the version in your project's plugin configuration:</p>
<div class="source">
-<pre><project>
+{{< highlight guess >}}
+<project>
...
- <build>
- <!-- To define the plugin version in your parent POM -->
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>de.juplo</groupId>
- <artifactId>hibernate-maven-plugin</artifactId>
- <version>2.1.2-SNAPSHOT</version>
- </plugin>
+ <build>
+ <!-- To define the plugin version in your parent POM -->
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>de.juplo</groupId>
+ <artifactId>hibernate-maven-plugin</artifactId>
+ <version>2.1.2-SNAPSHOT</version>
+ </plugin>
...
- </plugins>
- </pluginManagement>
- <!-- To use the plugin goals in your POM or parent POM -->
- <plugins>
- <plugin>
- <groupId>de.juplo</groupId>
- <artifactId>hibernate-maven-plugin</artifactId>
- <version>2.1.2-SNAPSHOT</version>
- </plugin>
+ </plugins>
+ </pluginManagement>
+ <!-- To use the plugin goals in your POM or parent POM -->
+ <plugins>
+ <plugin>
+ <groupId>de.juplo</groupId>
+ <artifactId>hibernate-maven-plugin</artifactId>
+ <version>2.1.2-SNAPSHOT</version>
+ </plugin>
...
- </plugins>
- </build>
+ </plugins>
+ </build>
...
-</project>
-</pre></div>
+</project>
+
+{{< /highlight >}}</div>
<p>For more information, see <a class="externalLink" href="http://maven.apache.org/guides/mini/guide-configuring-plugins.html">"Guide to Configuring Plug-ins"</a></p></section></section>
</div>
<!-- PREPARING ROOT-ENTRY - name: Hibernate Maven Plugin ref: index.html -->
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/create-mojo.html
+layout: article
---
<div id="sili-body">
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/drop-mojo.html
+layout: article
---
<div id="sili-body">
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/help-mojo.html
+layout: article
---
<div id="sili-body">
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/update-mojo.html
+layout: article
---
<div id="sili-body">
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pmd.html
+layout: article
---
<div id="sili-body">
<section>
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
title: Test JavaDocs
weight: 13
---
-<script type="text/javascript">window.location.replace('../testapidocs/index.html')</script>
+<script type="text/javascript">window.location.replace('../../testapidocs/index.html')</script>
<noscript><p>JavaScript is deactivated.</p></noscript>
-<p><a href="../testapidocs/index.html">View Test JavaDocs</a></p>
+<p><a href="../../testapidocs/index.html">View Test JavaDocs</a></p>
title: Test Source Xref
weight: 16
---
-<script type="text/javascript">window.location.replace('../xref-test/index.html')</script>
+<script type="text/javascript">window.location.replace('../../xref-test/index.html')</script>
<noscript><p>JavaScript is deactivated.</p></noscript>
-<p><a href="../xref-test/index.html">View Test Source Xref</a></p>
+<p><a href="../../xref-test/index.html">View Test Source Xref</a></p>
title: Source Xref
weight: 15
---
-<script type="text/javascript">window.location.replace('../xref/index.html')</script>
+<script type="text/javascript">window.location.replace('../../xref/index.html')</script>
<noscript><p>JavaScript is deactivated.</p></noscript>
-<p><a href="../xref/index.html">View Source Xref</a></p>
+<p><a href="../../xref/index.html">View Source Xref</a></p>
outputs:
- html
url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/skip.html
+layout: article
---
<div id="sili-body">
<h1>Skipping Execution</h1>
</p>
<div>
-<pre class="prettyprint linenums lang-html">
-<plugin>
- <groupId>de.juplo</groupId>
- <artifactId>hibernate-maven-plugin</artifactId>
+{{< highlight guess >}}
+
+<plugin>
+ <groupId>de.juplo</groupId>
+ <artifactId>hibernate-maven-plugin</artifactId>
...
- <configuration>
- <skip>false</skip>
- </configuration>
-</plugin></pre></div>
+ <configuration>
+ <skip>false</skip>
+ </configuration>
+</plugin>
+{{< /highlight >}}</div>
<p>
Or, if you want the plugin to be executed by default and to be skipped
</p>
<div>
-<pre class="prettyprint linenums lang-html">
-<plugin>
- <groupId>de.juplo</groupId>
- <artifactId>hibernate-maven-plugin</artifactId>
+{{< highlight guess >}}
+
+<plugin>
+ <groupId>de.juplo</groupId>
+ <artifactId>hibernate-maven-plugin</artifactId>
...
- <configuration>
- <skip>${foo.bar}</skip>
- </configuration>
-</plugin></pre></div>
+ <configuration>
+ <skip>${foo.bar}</skip>
+ </configuration>
+</plugin>
+{{< /highlight >}}</div>
<p>
This way, the plugin would be skipped, if you set the property
<!-- VISITING PAGE - href: pmd.html / name: PMD -->
<!-- VISITING PAGE - href: plugin-info.html / name: Plugin Documentation -->
<!-- READING MENU - name: $menu.name ref: $menu.ref -->
-<!-- VISITING PAGE - href: index.html / name: Overview -->
-<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=Overview -->
+<!-- VISITING PAGE - href: index.html / name: About -->
+<!-- RENAMING already seen PAGE: href=index.html, FROM name=About TO name=About -->
<!-- VISITING PAGE - href: configuration.html / name: Configuration Examples -->
<!-- VISITING PAGE - href: create-mojo.html / name: Goal — hibernate:create -->
<!-- VISITING PAGE - href: update-mojo.html / name: Goal — hibernate:update -->
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="class index">
<meta name="generator" content="javadoc/AllClassesIndexWriter">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="package index">
<meta name="generator" content="javadoc/AllPackagesIndexWriter">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="summary of constants">
<meta name="generator" content="javadoc/ConstantsSummaryWriterImpl">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="declaration: package: de.juplo.plugins.hibernate, class: AbstractSchemaMojo">
<meta name="generator" content="javadoc/ClassWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="declaration: package: de.juplo.plugins.hibernate, class: CreateMojo">
<meta name="generator" content="javadoc/ClassWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="declaration: package: de.juplo.plugins.hibernate, class: DropMojo">
<meta name="generator" content="javadoc/ClassWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="declaration: package: de.juplo.plugins.hibernate, class: HelpMojo">
<meta name="generator" content="javadoc/ClassWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="declaration: package: de.juplo.plugins.hibernate, class: ModificationTracker">
<meta name="generator" content="javadoc/ClassWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="declaration: package: de.juplo.plugins.hibernate, class: MutableClassLoader">
<meta name="generator" content="javadoc/ClassWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="declaration: package: de.juplo.plugins.hibernate, class: UpdateMojo">
<meta name="generator" content="javadoc/ClassWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="use: package: de.juplo.plugins.hibernate, class: AbstractSchemaMojo">
<meta name="generator" content="javadoc/ClassUseWriter">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="use: package: de.juplo.plugins.hibernate, class: CreateMojo">
<meta name="generator" content="javadoc/ClassUseWriter">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="use: package: de.juplo.plugins.hibernate, class: DropMojo">
<meta name="generator" content="javadoc/ClassUseWriter">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="use: package: de.juplo.plugins.hibernate, class: HelpMojo">
<meta name="generator" content="javadoc/ClassUseWriter">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="use: package: de.juplo.plugins.hibernate, class: ModificationTracker">
<meta name="generator" content="javadoc/ClassUseWriter">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="use: package: de.juplo.plugins.hibernate, class: MutableClassLoader">
<meta name="generator" content="javadoc/ClassUseWriter">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="use: package: de.juplo.plugins.hibernate, class: UpdateMojo">
<meta name="generator" content="javadoc/ClassUseWriter">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="declaration: package: de.juplo.plugins.hibernate">
<meta name="generator" content="javadoc/PackageWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="tree: package: de.juplo.plugins.hibernate">
<meta name="generator" content="javadoc/PackageTreeWriter">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="use: package: de.juplo.plugins.hibernate">
<meta name="generator" content="javadoc/PackageUseWriter">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="help">
<meta name="generator" content="javadoc/HelpWriter">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="index">
<meta name="generator" content="javadoc/IndexWriter">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="index redirect">
<meta name="generator" content="javadoc/IndexRedirectWriter">
<link rel="canonical" href="de/juplo/plugins/hibernate/package-summary.html">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="class tree">
<meta name="generator" content="javadoc/TreeWriter">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:25 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:50 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="search">
<meta name="generator" content="javadoc/SearchWriter">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:16 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:43 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="class index">
<meta name="generator" content="javadoc/AllClassesIndexWriter">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:16 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:43 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="package index">
<meta name="generator" content="javadoc/AllPackagesIndexWriter">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:16 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:43 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="declaration: package: de.juplo.test, class: FileComparator">
<meta name="generator" content="javadoc/ClassWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:16 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:43 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="use: package: de.juplo.test, class: FileComparator">
<meta name="generator" content="javadoc/ClassUseWriter">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:16 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:43 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="declaration: package: de.juplo.test">
<meta name="generator" content="javadoc/PackageWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:16 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:43 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="tree: package: de.juplo.test">
<meta name="generator" content="javadoc/PackageTreeWriter">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:16 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:43 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="use: package: de.juplo.test">
<meta name="generator" content="javadoc/PackageUseWriter">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:16 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:43 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="help">
<meta name="generator" content="javadoc/HelpWriter">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:16 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:43 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="index">
<meta name="generator" content="javadoc/IndexWriter">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:16 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:43 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="index redirect">
<meta name="generator" content="javadoc/IndexRedirectWriter">
<link rel="canonical" href="de/juplo/test/package-summary.html">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:16 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:43 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="class tree">
<meta name="generator" content="javadoc/TreeWriter">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<!DOCTYPE HTML>
<html lang="de">
<head>
-<!-- Generated by javadoc (21) on Fri Feb 20 17:19:16 CET 2026 -->
+<!-- Generated by javadoc (21) on Thu Apr 09 19:25:43 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">
-<meta name="dc.created" content="2026-02-20">
+<meta name="dc.created" content="2026-04-09">
<meta name="description" content="search">
<meta name="generator" content="javadoc/SearchWriter">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">