From: Kai Moritz Date: Wed, 29 Apr 2026 17:09:00 +0000 (+0200) Subject: WIP:`hibernate-maven-plugin/2.1.0` mit sili neu generiert X-Git-Url: https://juplo.de/gitweb/?a=commitdiff_plain;h=06b30b7ed6c05c853fe4eaead8e389afbbe2156d;p=website WIP:`hibernate-maven-plugin/2.1.0` mit sili neu generiert --- diff --git a/content/projects/hibernate-maven-plugin/2.1.0/configuration.html b/content/projects/hibernate-maven-plugin/2.1.0/configuration.html index 5f25173a..a54fc935 100644 --- a/content/projects/hibernate-maven-plugin/2.1.0/configuration.html +++ b/content/projects/hibernate-maven-plugin/2.1.0/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.0/debugging.html b/content/projects/hibernate-maven-plugin/2.1.0/debugging.html index 21c46518..741e1541 100644 --- a/content/projects/hibernate-maven-plugin/2.1.0/debugging.html +++ b/content/projects/hibernate-maven-plugin/2.1.0/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.0/force.html b/content/projects/hibernate-maven-plugin/2.1.0/force.html index a8bcdd81..f192ac3d 100644 --- a/content/projects/hibernate-maven-plugin/2.1.0/force.html +++ b/content/projects/hibernate-maven-plugin/2.1.0/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.0/pitfalls.html b/content/projects/hibernate-maven-plugin/2.1.0/pitfalls.html index d52b666f..7d39a89b 100644 --- a/content/projects/hibernate-maven-plugin/2.1.0/pitfalls.html +++ b/content/projects/hibernate-maven-plugin/2.1.0/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.0/skip.html b/content/projects/hibernate-maven-plugin/2.1.0/skip.html index 712dc0a7..2023a844 100644 --- a/content/projects/hibernate-maven-plugin/2.1.0/skip.html +++ b/content/projects/hibernate-maven-plugin/2.1.0/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.0/apidocs/allclasses-frame.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/allclasses-frame.html index 421c89e2..b9c234a0 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/allclasses-frame.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/allclasses-frame.html @@ -2,7 +2,7 @@ - + All Classes (Hibernate Maven Plugin 2.1.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/allclasses-noframe.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/allclasses-noframe.html index 808a7c96..1144865a 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/allclasses-noframe.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/allclasses-noframe.html @@ -2,7 +2,7 @@ - + All Classes (Hibernate Maven Plugin 2.1.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/constant-values.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/constant-values.html index 0f2e0bfe..ae47b65d 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/constant-values.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/constant-values.html @@ -2,7 +2,7 @@ - + Constant Field Values (Hibernate Maven Plugin 2.1.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html index 8a282ad2..460e437f 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html @@ -2,7 +2,7 @@ - + AbstractSchemaMojo (Hibernate Maven Plugin 2.1.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/CreateMojo.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/CreateMojo.html index a0dbe5fd..97c70704 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/CreateMojo.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/CreateMojo.html @@ -2,7 +2,7 @@ - + CreateMojo (Hibernate Maven Plugin 2.1.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/DropMojo.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/DropMojo.html index e702cc12..a8903e06 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/DropMojo.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/DropMojo.html @@ -2,7 +2,7 @@ - + DropMojo (Hibernate Maven Plugin 2.1.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/HelpMojo.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/HelpMojo.html index 3a5ceed6..2c044926 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/HelpMojo.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/HelpMojo.html @@ -2,7 +2,7 @@ - + HelpMojo (Hibernate Maven Plugin 2.1.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html index 73cd449e..ca0024cb 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html @@ -2,7 +2,7 @@ - + ModificationTracker (Hibernate Maven Plugin 2.1.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html index fc5f06ce..ecaeadfe 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html @@ -2,7 +2,7 @@ - + MutableClassLoader (Hibernate Maven Plugin 2.1.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/UpdateMojo.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/UpdateMojo.html index 883f933c..7e7f47d8 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/UpdateMojo.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/UpdateMojo.html @@ -2,7 +2,7 @@ - + UpdateMojo (Hibernate Maven Plugin 2.1.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html index d707c485..2934003e 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/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.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html index c68fbbf6..6522bd7b 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/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.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html index ede16bd8..d19a7e27 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/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.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html index c30da22a..4281af63 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/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.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html index 8a65ba29..d879946a 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/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.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html index 7444a135..333058e0 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/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.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/UpdateMojo.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/UpdateMojo.html index 0a1692b5..67d3f9d6 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/class-use/UpdateMojo.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/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.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/package-frame.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/package-frame.html index 1893e812..113fafa7 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/package-frame.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/package-frame.html @@ -2,7 +2,7 @@ - + de.juplo.plugins.hibernate (Hibernate Maven Plugin 2.1.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/package-summary.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/package-summary.html index f9f5e3cd..97feaf2e 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/package-summary.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/package-summary.html @@ -2,7 +2,7 @@ - + de.juplo.plugins.hibernate (Hibernate Maven Plugin 2.1.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/package-tree.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/package-tree.html index a794c36a..3b363621 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/package-tree.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/package-tree.html @@ -2,7 +2,7 @@ - + de.juplo.plugins.hibernate Class Hierarchy (Hibernate Maven Plugin 2.1.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/package-use.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/package-use.html index 7256e6de..657443cf 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/package-use.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/de/juplo/plugins/hibernate/package-use.html @@ -2,7 +2,7 @@ - + Uses of Package de.juplo.plugins.hibernate (Hibernate Maven Plugin 2.1.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/deprecated-list.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/deprecated-list.html index 9eac0deb..324f3c37 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/deprecated-list.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/deprecated-list.html @@ -2,7 +2,7 @@ - + Deprecated List (Hibernate Maven Plugin 2.1.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/help-doc.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/help-doc.html index 251544d1..ac1a02e6 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/help-doc.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/help-doc.html @@ -2,7 +2,7 @@ - + API Help (Hibernate Maven Plugin 2.1.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/index-all.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/index-all.html index 501ac804..b3a4aace 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/index-all.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/index-all.html @@ -2,7 +2,7 @@ - + Index (Hibernate Maven Plugin 2.1.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/index.html b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/index.html index 763818e8..4ee7d9fd 100644 --- a/static/projects/hibernate-maven-plugin/2.1.0/apidocs/index.html +++ b/static/projects/hibernate-maven-plugin/2.1.0/apidocs/index.html @@ -2,7 +2,7 @@ - + Hibernate Maven Plugin 2.1.0 API