From: Kai Moritz Date: Wed, 29 Apr 2026 17:13:48 +0000 (+0200) Subject: WIP:`hibernate-maven-plugin/2.0.0` mit sili neu generiert X-Git-Url: https://juplo.de/gitweb/?a=commitdiff_plain;h=63360e4d6abd0f728f09d9fcbbe1859f3c586172;p=website WIP:`hibernate-maven-plugin/2.0.0` mit sili neu generiert --- diff --git a/content/projects/hibernate-maven-plugin/2.0.0/configuration.html b/content/projects/hibernate-maven-plugin/2.0.0/configuration.html index 0e939016..6b10e72b 100644 --- a/content/projects/hibernate-maven-plugin/2.0.0/configuration.html +++ b/content/projects/hibernate-maven-plugin/2.0.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.0.0/debugging.html b/content/projects/hibernate-maven-plugin/2.0.0/debugging.html index 825454ca..86549e47 100644 --- a/content/projects/hibernate-maven-plugin/2.0.0/debugging.html +++ b/content/projects/hibernate-maven-plugin/2.0.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.0.0/force.html b/content/projects/hibernate-maven-plugin/2.0.0/force.html index e5ce7a06..8cff08c4 100644 --- a/content/projects/hibernate-maven-plugin/2.0.0/force.html +++ b/content/projects/hibernate-maven-plugin/2.0.0/force.html @@ -32,10 +32,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 @@ -44,7 +44,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.0.0/pitfalls.html b/content/projects/hibernate-maven-plugin/2.0.0/pitfalls.html index 5d480d6a..da669190 100644 --- a/content/projects/hibernate-maven-plugin/2.0.0/pitfalls.html +++ b/content/projects/hibernate-maven-plugin/2.0.0/pitfalls.html @@ -35,14 +35,15 @@ params: -Dhibernate.schema.export=false or with the following configuration:

- -
-{{< highlight guess >}} +
+
+{{< highlight guess >}} - false + false -{{< /highlight >}}
+ +{{< /highlight >}}

But even when no database is to be created, hibernate always needs to know @@ -63,10 +64,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 = @@ -96,7 +97,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 @@ -107,10 +109,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 @@ -131,7 +133,8 @@ params: -{{< /highlight >}}
+ +{{< /highlight >}}

This is also the best way, if you use a different jdbc-driver for @@ -167,10 +170,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 @@ -178,7 +181,8 @@ params: ${hibernate.schema.skipped} -{{< /highlight >}}
+ +{{< /highlight >}}

The database will not be recreated after a manual drop/clean

@@ -191,24 +195,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

@@ -217,10 +223,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 @@ -229,7 +235,8 @@ mvn hibernate:create -Dhibernate.schema.force=true false -{{< /highlight >}}
+ +{{< /highlight >}}

Background-information for this design-decission can be found on the extra @@ -244,10 +251,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 @@ -256,7 +263,8 @@ mvn hibernate:create -Dhibernate.schema.force=true none -{{< /highlight >}}
+ +{{< /highlight >}}

No annotated classes found

diff --git a/content/projects/hibernate-maven-plugin/2.0.0/skip.html b/content/projects/hibernate-maven-plugin/2.0.0/skip.html index 2d598523..143641d6 100644 --- a/content/projects/hibernate-maven-plugin/2.0.0/skip.html +++ b/content/projects/hibernate-maven-plugin/2.0.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.0.0/apidocs/allclasses-frame.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/allclasses-frame.html index dd1080e0..c8e237c1 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/allclasses-frame.html +++ b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/allclasses-frame.html @@ -2,7 +2,7 @@ - + All Classes (Hibernate Maven Plugin 2.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/allclasses-noframe.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/allclasses-noframe.html index aaa8d1b9..7ec5e273 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/allclasses-noframe.html +++ b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/allclasses-noframe.html @@ -2,7 +2,7 @@ - + All Classes (Hibernate Maven Plugin 2.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/constant-values.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/constant-values.html index 9b44ede4..c42824f3 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/constant-values.html +++ b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/constant-values.html @@ -2,7 +2,7 @@ - + Constant Field Values (Hibernate Maven Plugin 2.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html index 30b82c87..8056b09c 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html +++ b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html @@ -2,7 +2,7 @@ - + AbstractSchemaMojo (Hibernate Maven Plugin 2.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/CreateMojo.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/CreateMojo.html index 3fef271f..bdf358fa 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/CreateMojo.html +++ b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/CreateMojo.html @@ -2,7 +2,7 @@ - + CreateMojo (Hibernate Maven Plugin 2.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/DropMojo.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/DropMojo.html index 13a78cb1..18a27634 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/DropMojo.html +++ b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/DropMojo.html @@ -2,7 +2,7 @@ - + DropMojo (Hibernate Maven Plugin 2.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/HelpMojo.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/HelpMojo.html index 63d113ef..1ff5bc5e 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/HelpMojo.html +++ b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/HelpMojo.html @@ -2,7 +2,7 @@ - + HelpMojo (Hibernate Maven Plugin 2.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html index 6ac5c651..bbdc2b63 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html +++ b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html @@ -2,7 +2,7 @@ - + ModificationTracker (Hibernate Maven Plugin 2.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html index 53a4199e..20eab48a 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html +++ b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html @@ -2,7 +2,7 @@ - + MutableClassLoader (Hibernate Maven Plugin 2.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html index 85242492..6883f194 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html +++ b/static/projects/hibernate-maven-plugin/2.0.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.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html index ea615c6e..12c02c04 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html +++ b/static/projects/hibernate-maven-plugin/2.0.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.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html index af349391..3b5136b6 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html +++ b/static/projects/hibernate-maven-plugin/2.0.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.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html index 0e056a7a..f0e84198 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html +++ b/static/projects/hibernate-maven-plugin/2.0.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.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html index 90288198..4765253f 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html +++ b/static/projects/hibernate-maven-plugin/2.0.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.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html index 161e4bda..8ad121a2 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html +++ b/static/projects/hibernate-maven-plugin/2.0.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.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/package-frame.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/package-frame.html index b86604da..6f903bee 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/package-frame.html +++ b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/package-frame.html @@ -2,7 +2,7 @@ - + de.juplo.plugins.hibernate (Hibernate Maven Plugin 2.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/package-summary.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/package-summary.html index 5c979b29..9859a555 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/package-summary.html +++ b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/package-summary.html @@ -2,7 +2,7 @@ - + de.juplo.plugins.hibernate (Hibernate Maven Plugin 2.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/package-tree.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/package-tree.html index ad1ef592..e9b937a8 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/package-tree.html +++ b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/package-tree.html @@ -2,7 +2,7 @@ - + de.juplo.plugins.hibernate Class Hierarchy (Hibernate Maven Plugin 2.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/package-use.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/package-use.html index 2ffca60c..08b03728 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/package-use.html +++ b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/de/juplo/plugins/hibernate/package-use.html @@ -2,7 +2,7 @@ - + Uses of Package de.juplo.plugins.hibernate (Hibernate Maven Plugin 2.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/deprecated-list.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/deprecated-list.html index c66c7d5f..237318c1 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/deprecated-list.html +++ b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/deprecated-list.html @@ -2,7 +2,7 @@ - + Deprecated List (Hibernate Maven Plugin 2.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/help-doc.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/help-doc.html index de6b0abe..d36ff0ef 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/help-doc.html +++ b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/help-doc.html @@ -2,7 +2,7 @@ - + API Help (Hibernate Maven Plugin 2.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/index-all.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/index-all.html index 56e93dfe..e3d41b5c 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/index-all.html +++ b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/index-all.html @@ -2,7 +2,7 @@ - + Index (Hibernate Maven Plugin 2.0.0 API) diff --git a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/index.html b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/index.html index f4c509eb..f55fcc2f 100644 --- a/static/projects/hibernate-maven-plugin/2.0.0/apidocs/index.html +++ b/static/projects/hibernate-maven-plugin/2.0.0/apidocs/index.html @@ -2,7 +2,7 @@ - + Hibernate Maven Plugin 2.0.0 API