From 07b1a932b394803e2a8f1388f79afe1a8f052ba3 Mon Sep 17 00:00:00 2001
From: Kai Moritz
Date: Wed, 29 Apr 2026 15:49:44 +0200
Subject: [PATCH] WIP:`hibernate-maven-plugin/2.1.1` mit sili neu generiert
---
.../2.1.1/configuration.html | 48 +++++------
.../2.1.1/debugging.html | 9 ++-
.../hibernate-maven-plugin/2.1.1/force.html | 9 ++-
.../2.1.1/pitfalls.html | 80 ++++++++++---------
.../hibernate-maven-plugin/2.1.1/skip.html | 18 +++--
.../2.1.1/apidocs/allclasses-frame.html | 2 +-
.../2.1.1/apidocs/allclasses-noframe.html | 2 +-
.../2.1.1/apidocs/constant-values.html | 2 +-
.../plugins/hibernate/AbstractSchemaMojo.html | 2 +-
.../juplo/plugins/hibernate/CreateMojo.html | 2 +-
.../de/juplo/plugins/hibernate/DropMojo.html | 2 +-
.../de/juplo/plugins/hibernate/HelpMojo.html | 2 +-
.../hibernate/ModificationTracker.html | 2 +-
.../plugins/hibernate/MutableClassLoader.html | 2 +-
.../juplo/plugins/hibernate/UpdateMojo.html | 2 +-
.../class-use/AbstractSchemaMojo.html | 2 +-
.../hibernate/class-use/CreateMojo.html | 2 +-
.../plugins/hibernate/class-use/DropMojo.html | 2 +-
.../plugins/hibernate/class-use/HelpMojo.html | 2 +-
.../class-use/ModificationTracker.html | 2 +-
.../class-use/MutableClassLoader.html | 2 +-
.../hibernate/class-use/UpdateMojo.html | 2 +-
.../plugins/hibernate/package-frame.html | 2 +-
.../plugins/hibernate/package-summary.html | 2 +-
.../juplo/plugins/hibernate/package-tree.html | 2 +-
.../juplo/plugins/hibernate/package-use.html | 2 +-
.../2.1.1/apidocs/deprecated-list.html | 2 +-
.../2.1.1/apidocs/help-doc.html | 2 +-
.../2.1.1/apidocs/index-all.html | 2 +-
.../2.1.1/apidocs/index.html | 2 +-
.../2.1.1/apidocs/overview-tree.html | 2 +-
.../2.1.1/testapidocs/allclasses-frame.html | 2 +-
.../2.1.1/testapidocs/allclasses-noframe.html | 2 +-
.../2.1.1/testapidocs/constant-values.html | 2 +-
.../de/juplo/test/FileComparator.html | 2 +-
.../juplo/test/class-use/FileComparator.html | 2 +-
.../de/juplo/test/package-frame.html | 2 +-
.../de/juplo/test/package-summary.html | 2 +-
.../de/juplo/test/package-tree.html | 2 +-
.../de/juplo/test/package-use.html | 2 +-
.../2.1.1/testapidocs/deprecated-list.html | 2 +-
.../2.1.1/testapidocs/help-doc.html | 2 +-
.../2.1.1/testapidocs/index-all.html | 2 +-
.../2.1.1/testapidocs/index.html | 2 +-
.../2.1.1/testapidocs/overview-tree.html | 2 +-
45 files changed, 128 insertions(+), 116 deletions(-)
diff --git a/content/projects/hibernate-maven-plugin/2.1.1/configuration.html b/content/projects/hibernate-maven-plugin/2.1.1/configuration.html
index 3e488f95..a8758020 100644
--- a/content/projects/hibernate-maven-plugin/2.1.1/configuration.html
+++ b/content/projects/hibernate-maven-plugin/2.1.1/configuration.html
@@ -25,10 +25,10 @@ params:
Doing so, the only additionally configuration needed, to activat the plugin
is the following entry in the plugins-section of your pom.xml:
-
-
-{{< highlight guess >}}
+
+
+{{< highlight guess >}}
de.juplo
hibernate-maven-plugin
@@ -42,17 +42,17 @@ params:
-{{< /highlight >}}
+{{< /highlight >}}
This would create the configured database.
If you want it to be droped beforehand, you have to add the goal
drop:
-
-
-{{< highlight guess >}}
+
+
+{{< highlight guess >}}
de.juplo
hibernate-maven-plugin
@@ -67,7 +67,7 @@ params:
-{{< /highlight >}}
+{{< /highlight >}}
A correspondin goal for the command update is missing in this
@@ -80,17 +80,17 @@ params:
to use.
A simple example hibernate.properties-file may look like this:
-
-
-{{< highlight guess >}}
+
+
+{{< 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 >}}
+{{< /highlight >}}
But be aware, that using this configuration-approach the database-url,
@@ -107,10 +107,10 @@ hibernate.connection.password=
A better approach is, to specify a different url for testing like in the
following snippet:
-
-
-{{< highlight guess >}}
+
+
+{{< highlight guess >}}
de.juplo
hibernate-maven-plugin
@@ -128,7 +128,7 @@ hibernate.connection.password=
-{{< /highlight >}}
+{{< /highlight >}}
Configuration properties, that are set in the configuration-section
@@ -243,10 +243,10 @@ hibernate.connection.password=
The equivalent of the configuration from the last section would look
like this:
-
-
-{{< highlight guess >}}
+
+
+{{< highlight guess >}}
de.juplo
hibernate-maven-plugin
@@ -268,7 +268,7 @@ hibernate.connection.password=
-{{< /highlight >}}
+{{< /highlight >}}
The parameter hibernateProperties (name of the hibernate-properties-file
@@ -318,10 +318,10 @@ hibernate.connection.password=
If you need to overwrite plugin-configuration-values with
maven-properties, you can use maven-properties in the plugin-configuration:
-
-
-{{< highlight guess >}}
+
+
+{{< highlight guess >}}
de.juplo
hibernate-maven-plugin
@@ -339,7 +339,7 @@ hibernate.connection.password=
-{{< /highlight >}}
+{{< /highlight >}}
diff --git a/content/projects/hibernate-maven-plugin/2.1.1/debugging.html b/content/projects/hibernate-maven-plugin/2.1.1/debugging.html
index 38b05f53..2a920285 100644
--- a/content/projects/hibernate-maven-plugin/2.1.1/debugging.html
+++ b/content/projects/hibernate-maven-plugin/2.1.1/debugging.html
@@ -19,12 +19,13 @@ params:
enabled.
For example, by executing:
-
-
-{{< highlight guess >}}
+
+
+{{< highlight guess >}}
mvn -X compile hibernate:create
-{{< /highlight >}}
+
+{{< /highlight >}}
(The compile might be necessary, because hibernate-maven-plugin
diff --git a/content/projects/hibernate-maven-plugin/2.1.1/force.html b/content/projects/hibernate-maven-plugin/2.1.1/force.html
index 16de51c1..c5279496 100644
--- a/content/projects/hibernate-maven-plugin/2.1.1/force.html
+++ b/content/projects/hibernate-maven-plugin/2.1.1/force.html
@@ -33,10 +33,10 @@ params:
you can force it to do so, if you set the parameter force to
true:
-
-
-{{< highlight guess >}}
+
+
+{{< highlight guess >}}
de.juplo
hibernate-maven-plugin
@@ -45,7 +45,8 @@ params:
true
-{{< /highlight >}}
+
+{{< /highlight >}}
Or you may specify -Dhibernate.schema.force=true at the command line,
diff --git a/content/projects/hibernate-maven-plugin/2.1.1/pitfalls.html b/content/projects/hibernate-maven-plugin/2.1.1/pitfalls.html
index 0d0ac9cb..d1f0cfe2 100644
--- a/content/projects/hibernate-maven-plugin/2.1.1/pitfalls.html
+++ b/content/projects/hibernate-maven-plugin/2.1.1/pitfalls.html
@@ -34,14 +34,15 @@ params:
-Dhibernate.schema.execute=false or with the following
configuration:
-
-
-{{< highlight guess >}}
+
+
+{{< highlight guess >}}
false
-{{< /highlight >}}
+
+{{< /highlight >}}
But even when no database is to be created, hibernate always needs to know
@@ -62,10 +63,10 @@ params:
Since it will not be able to see the needed dependency, it will fail with
an error-message like:
-
-
-{{< highlight guess >}}
+
+
+{{< highlight guess >}}
[INFO] Gathered hibernate-configuration (turn on debugging for details):
[INFO] hibernate.connection.username = sa
[INFO] hibernate.connection.password =
@@ -95,7 +96,8 @@ params:
[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 >}}
+
+{{< /highlight >}}
A quick workaround for this error would be, to delete the runtime-constraint
@@ -106,10 +108,10 @@ params:
A much cleaner way is, to (additionally) ad the dependency, to the
plugin-definition:
-
-
-{{< highlight guess >}}
+
+
+{{< highlight guess >}}
de.juplo
hibernate-maven-plugin
@@ -130,7 +132,8 @@ params:
-{{< /highlight >}}
+
+{{< /highlight >}}
This is also the best way, if you use a different jdbc-driver for
@@ -166,10 +169,10 @@ params:
For example, the dbunit-plugin can be configured to skip its excecution, if
hibernate-maven-plugin was skipped like this:
-
-
-{{< highlight guess >}}
+
+
+{{< highlight guess >}}
org.codehaus.mojo
dbunit-maven-plugin
@@ -177,7 +180,8 @@ params:
${hibernate.schema.skipped}
-{{< /highlight >}}
+
+{{< /highlight >}}
The database will not be recreated after a manual drop/clean
@@ -190,24 +194,26 @@ params:
unnecessary drop-create-cycle might take a long time. The plugin will
report that like this:
-
-
-{{< highlight guess >}}
+
+
+{{< highlight guess >}}
[INFO] No modified annotated classes found and dialect unchanged.
[INFO] Skipping schema generation!
-{{< /highlight >}}
+
+{{< /highlight >}}
If one always uses mvn clean for cleanup, this will not happen.
Otherwise the recreation must be forced:
-
-
-{{< highlight guess >}}
+
+
+{{< highlight guess >}}
mvn hibernate:create -Dhibernate.schema.force=true
-{{< /highlight >}}
+
+{{< /highlight >}}
The hibernate:create goal is not executed, when tests are skipped
@@ -216,10 +222,10 @@ mvn hibernate:create -Dhibernate.schema.force=true
maven.test.skip is set to true. If you need it to be always
executed, you can configure that explicitly like this:
-
-
-{{< highlight guess >}}
+
+
+{{< highlight guess >}}
de.juplo
hibernate-maven-plugin
@@ -228,7 +234,8 @@ mvn hibernate:create -Dhibernate.schema.force=true
false
-{{< /highlight >}}
+
+{{< /highlight >}}
Background-information for this design-decission can be found on the extra
@@ -243,10 +250,10 @@ mvn hibernate:create -Dhibernate.schema.force=true
or set scanDependencies to none in the configuration
of the plugin like this:
-
-
-{{< highlight guess >}}
+
+
+{{< highlight guess >}}
de.juplo
hibernate-maven-plugin
@@ -255,7 +262,8 @@ mvn hibernate:create -Dhibernate.schema.force=true
none
-{{< /highlight >}}
+
+{{< /highlight >}}
No annotated classes found
@@ -289,10 +297,10 @@ mvn hibernate:create -Dhibernate.schema.force=true
Example configuration for two goals:
-
-
-{{< highlight guess >}}
+
+
+{{< highlight guess >}}
Create Drop-Schema
@@ -316,7 +324,7 @@ mvn hibernate:create -Dhibernate.schema.force=true
-{{< /highlight >}}
+{{< /highlight >}}
diff --git a/content/projects/hibernate-maven-plugin/2.1.1/skip.html b/content/projects/hibernate-maven-plugin/2.1.1/skip.html
index cee37a7f..c64e080b 100644
--- a/content/projects/hibernate-maven-plugin/2.1.1/skip.html
+++ b/content/projects/hibernate-maven-plugin/2.1.1/skip.html
@@ -36,10 +36,10 @@ params:
even if the tests are skipped you can configure that explicitly,
by setting the configuration-parameter skip to false:
-
-
-{{< highlight guess >}}
+
+
+{{< highlight guess >}}
de.juplo
hibernate-maven-plugin
@@ -48,17 +48,18 @@ params:
false
-{{< /highlight >}}
+
+{{< /highlight >}}
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
skip to a custom property. For example:
-
-
-{{< highlight guess >}}
+
+
+{{< highlight guess >}}
de.juplo
hibernate-maven-plugin
@@ -67,7 +68,8 @@ params:
${foo.bar}
-{{< /highlight >}}
+
+{{< /highlight >}}
This way, the plugin would be skipped, if you set the property
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/allclasses-frame.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/allclasses-frame.html
index b2610211..c08af149 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/allclasses-frame.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/allclasses-frame.html
@@ -2,7 +2,7 @@
-
+
All Classes (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/allclasses-noframe.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/allclasses-noframe.html
index b9e82bf7..808b9ab3 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/allclasses-noframe.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/allclasses-noframe.html
@@ -2,7 +2,7 @@
-
+
All Classes (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/constant-values.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/constant-values.html
index 2a6cc8ff..35396e97 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/constant-values.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/constant-values.html
@@ -2,7 +2,7 @@
-
+
Constant Field Values (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html
index 5a8423bc..37f0ae9c 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html
@@ -2,7 +2,7 @@
-
+
AbstractSchemaMojo (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/CreateMojo.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/CreateMojo.html
index 8553c90c..4cfd1d63 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/CreateMojo.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/CreateMojo.html
@@ -2,7 +2,7 @@
-
+
CreateMojo (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/DropMojo.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/DropMojo.html
index 3fbe729f..216dbeef 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/DropMojo.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/DropMojo.html
@@ -2,7 +2,7 @@
-
+
DropMojo (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/HelpMojo.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/HelpMojo.html
index 2f200c40..cb9b2769 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/HelpMojo.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/HelpMojo.html
@@ -2,7 +2,7 @@
-
+
HelpMojo (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html
index e8f10cb5..6dce5478 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html
@@ -2,7 +2,7 @@
-
+
ModificationTracker (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html
index 8aba7312..6698ad74 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html
@@ -2,7 +2,7 @@
-
+
MutableClassLoader (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/UpdateMojo.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/UpdateMojo.html
index ecb24e5b..1c8c4682 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/UpdateMojo.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/UpdateMojo.html
@@ -2,7 +2,7 @@
-
+
UpdateMojo (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html
index 1edbf75c..eaab8bc7 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html
@@ -2,7 +2,7 @@
-
+
Uses of Class de.juplo.plugins.hibernate.AbstractSchemaMojo (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html
index 726e684d..015db74a 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html
@@ -2,7 +2,7 @@
-
+
Uses of Class de.juplo.plugins.hibernate.CreateMojo (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html
index 9cf7425c..580f2ef9 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html
@@ -2,7 +2,7 @@
-
+
Uses of Class de.juplo.plugins.hibernate.DropMojo (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html
index ab460a0d..c52f86f4 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html
@@ -2,7 +2,7 @@
-
+
Uses of Class de.juplo.plugins.hibernate.HelpMojo (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html
index d92a6352..37abb331 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html
@@ -2,7 +2,7 @@
-
+
Uses of Class de.juplo.plugins.hibernate.ModificationTracker (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html
index 09f1c523..12c5055a 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html
@@ -2,7 +2,7 @@
-
+
Uses of Class de.juplo.plugins.hibernate.MutableClassLoader (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/UpdateMojo.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/UpdateMojo.html
index efae21e4..a4a6d7d0 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/UpdateMojo.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/UpdateMojo.html
@@ -2,7 +2,7 @@
-
+
Uses of Class de.juplo.plugins.hibernate.UpdateMojo (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-frame.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-frame.html
index f2d12549..6ede5aa1 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-frame.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-frame.html
@@ -2,7 +2,7 @@
-
+
de.juplo.plugins.hibernate (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-summary.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-summary.html
index 58fdf99c..03908d68 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-summary.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-summary.html
@@ -2,7 +2,7 @@
-
+
de.juplo.plugins.hibernate (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-tree.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-tree.html
index 0b2cd363..eb996ce8 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-tree.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-tree.html
@@ -2,7 +2,7 @@
-
+
de.juplo.plugins.hibernate Class Hierarchy (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-use.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-use.html
index 9c4672d1..41d4e778 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-use.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-use.html
@@ -2,7 +2,7 @@
-
+
Uses of Package de.juplo.plugins.hibernate (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/deprecated-list.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/deprecated-list.html
index f34944aa..13f73cdb 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/deprecated-list.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/deprecated-list.html
@@ -2,7 +2,7 @@
-
+
Deprecated List (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/help-doc.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/help-doc.html
index 202a6c78..86d1cc27 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/help-doc.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/help-doc.html
@@ -2,7 +2,7 @@
-
+
API Help (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/index-all.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/index-all.html
index f88292ff..f8098564 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/index-all.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/index-all.html
@@ -2,7 +2,7 @@
-
+
Index (Hibernate Maven Plugin 2.1.1 API)
diff --git a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/index.html b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/index.html
index fbb1136d..4d9fee12 100644
--- a/static/projects/hibernate-maven-plugin/2.1.1/apidocs/index.html
+++ b/static/projects/hibernate-maven-plugin/2.1.1/apidocs/index.html
@@ -2,7 +2,7 @@
-
+
Hibernate Maven Plugin 2.1.1 API