From: Kai Moritz Date: Wed, 29 Apr 2026 13:54:17 +0000 (+0200) Subject: Beispiel-Content: Doku für `hibernate-maven-plugin` mit Korrektur neu generiert X-Git-Url: https://juplo.de/gitweb/?a=commitdiff_plain;h=ac555cfa5057f1050a91d4c81fe4db287d93b0f3;p=website Beispiel-Content: Doku für `hibernate-maven-plugin` mit Korrektur neu generiert --- diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.1/_index.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.1/_index.html index 440a67fe..6c173ec2 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.1/_index.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.1/_index.html @@ -1,6 +1,8 @@ --- title: Hibernate Maven Plugin weight: 0 +outputs: + - html url: /hibernate-maven-plugin/ layout: article params: diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.1/configuration.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.1/configuration.html index 3e488f95..a8758020 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.1/configuration.html +++ b/exampleSite/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/exampleSite/content/projects/hibernate-maven-plugin/2.1.1/debugging.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.1/debugging.html index 38b05f53..2a920285 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.1/debugging.html +++ b/exampleSite/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/exampleSite/content/projects/hibernate-maven-plugin/2.1.1/force.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.1/force.html index 16de51c1..c5279496 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.1/force.html +++ b/exampleSite/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/exampleSite/content/projects/hibernate-maven-plugin/2.1.1/pitfalls.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.1/pitfalls.html index 0d0ac9cb..d1f0cfe2 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.1/pitfalls.html +++ b/exampleSite/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/exampleSite/content/projects/hibernate-maven-plugin/2.1.1/skip.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.1/skip.html index cee37a7f..c64e080b 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.1/skip.html +++ b/exampleSite/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/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/_index.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/_index.html index 76d1cdd8..93123a5d 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/_index.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/_index.html @@ -1,10 +1,12 @@ --- title: Hibernate Maven Plugin weight: 0 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/ layout: article params: - canonical: hibernate-maven-plugin/ + canonical: /hibernate-maven-plugin/ ---

Hibernate Maven Plugin

diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html index c476f6c9..c568fdfb 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html @@ -1,10 +1,12 @@ --- title: Configuration Examples weight: 20 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html layout: article params: - canonical: hibernate-maven-plugin/configuration.html + canonical: /hibernate-maven-plugin/configuration.html ---

Configuration Examples

@@ -23,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 @@ -40,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 @@ -65,7 +67,7 @@ params: -{{< /highlight >}}
+{{< /highlight >}}

A correspondin goal for the command update is missing in this @@ -78,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, @@ -105,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 @@ -126,7 +128,7 @@ hibernate.connection.password= -{{< /highlight >}}
+{{< /highlight >}}

Configuration properties, that are set in the configuration-section @@ -241,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 @@ -266,7 +268,7 @@ hibernate.connection.password= -{{< /highlight >}}
+{{< /highlight >}}

The parameter hibernateProperties (name of the hibernate-properties-file @@ -316,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 @@ -337,7 +339,7 @@ hibernate.connection.password= -{{< /highlight >}}
+{{< /highlight >}}
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/debugging.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/debugging.html index 5ebdc51c..f30c93df 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/debugging.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/debugging.html @@ -1,10 +1,12 @@ --- title: Enable Debugging-Output weight: 25 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/debugging.html layout: article params: - canonical: hibernate-maven-plugin/debugging.html + canonical: /hibernate-maven-plugin/debugging.html ---

Enable Debugging-Output

@@ -17,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/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/force.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/force.html index 5527d559..de4246b9 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/force.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/force.html @@ -1,10 +1,12 @@ --- title: Force Exceution weight: 27 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/force.html layout: article params: - canonical: hibernate-maven-plugin/force.html + canonical: /hibernate-maven-plugin/force.html ---

Force Execution

@@ -31,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 @@ -43,7 +45,8 @@ params: true -{{< /highlight >}}
+ +{{< /highlight >}}

Or you may specify -Dhibernate.schema.force=true at the command line, diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pitfalls.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pitfalls.html index 452115a7..7d768129 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pitfalls.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pitfalls.html @@ -1,10 +1,12 @@ --- title: Known Pitfalls (FAQ) weight: 28 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pitfalls.html layout: article params: - canonical: hibernate-maven-plugin/pitfalls.html + canonical: /hibernate-maven-plugin/pitfalls.html ---

Known Pitfalls (FAQ)

@@ -32,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 @@ -60,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 = @@ -93,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 @@ -104,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 @@ -128,7 +132,8 @@ params: -{{< /highlight >}}
+ +{{< /highlight >}}

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

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

@@ -188,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

@@ -214,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 @@ -226,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 @@ -241,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 @@ -253,7 +262,8 @@ mvn hibernate:create -Dhibernate.schema.force=true none -{{< /highlight >}}
+ +{{< /highlight >}}

No annotated classes found

@@ -287,10 +297,10 @@ mvn hibernate:create -Dhibernate.schema.force=true

Example configuration for two goals:

- -
-{{< highlight guess >}} +
+
+{{< highlight guess >}} Create Drop-Schema @@ -314,7 +324,7 @@ mvn hibernate:create -Dhibernate.schema.force=true -{{< /highlight >}}
+{{< /highlight >}}
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/_index.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/_index.html index e4396951..550698d0 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/_index.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/_index.html @@ -1,10 +1,12 @@ --- title: Project Information weight: 1 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info.html layout: article params: - canonical: hibernate-maven-plugin/project-info.html + canonical: /hibernate-maven-plugin/project-info.html ---
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/ci-management.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/ci-management.html index 7a341488..565c8f36 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/ci-management.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/ci-management.html @@ -1,10 +1,12 @@ --- title: CI Management weight: 2 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/ci-management.html layout: article params: - canonical: hibernate-maven-plugin/ci-management.html + canonical: /hibernate-maven-plugin/ci-management.html ---
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/dependencies.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/dependencies.html index 49c55dfb..1f120ab8 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/dependencies.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/dependencies.html @@ -1,10 +1,12 @@ --- title: Dependencies weight: 3 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/dependencies.html layout: article params: - canonical: hibernate-maven-plugin/dependencies.html + canonical: /hibernate-maven-plugin/dependencies.html ---
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/dependency-info.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/dependency-info.html index 5e65a3a9..e445a8b2 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/dependency-info.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/dependency-info.html @@ -1,10 +1,12 @@ --- title: Maven Coordinates weight: 4 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/dependency-info.html layout: article params: - canonical: hibernate-maven-plugin/dependency-info.html + canonical: /hibernate-maven-plugin/dependency-info.html ---
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/distribution-management.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/distribution-management.html index 7e1ce2de..ba17897b 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/distribution-management.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/distribution-management.html @@ -1,10 +1,12 @@ --- title: Distribution Management weight: 5 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/distribution-management.html layout: article params: - canonical: hibernate-maven-plugin/distribution-management.html + canonical: /hibernate-maven-plugin/distribution-management.html ---
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/licenses.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/licenses.html index 61dc2e4d..ed94e01b 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/licenses.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/licenses.html @@ -1,10 +1,12 @@ --- title: Licenses weight: 6 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/licenses.html layout: article params: - canonical: hibernate-maven-plugin/licenses.html + canonical: /hibernate-maven-plugin/licenses.html ---
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/plugin-management.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/plugin-management.html index 8c1a0a50..384b67c4 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/plugin-management.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/plugin-management.html @@ -1,10 +1,12 @@ --- title: Plugin Management weight: 7 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/plugin-management.html layout: article params: - canonical: hibernate-maven-plugin/plugin-management.html + canonical: /hibernate-maven-plugin/plugin-management.html ---
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/plugins.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/plugins.html index e1fa86c3..e2ece03c 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/plugins.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/plugins.html @@ -1,10 +1,12 @@ --- title: Plugins weight: 8 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/plugins.html layout: article params: - canonical: hibernate-maven-plugin/plugins.html + canonical: /hibernate-maven-plugin/plugins.html ---
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/scm.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/scm.html index 64abe3c2..5f435d81 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/scm.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/scm.html @@ -1,10 +1,12 @@ --- title: Source Code Management weight: 9 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/scm.html layout: article params: - canonical: hibernate-maven-plugin/scm.html + canonical: /hibernate-maven-plugin/scm.html ---
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/summary.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/summary.html index 9c779bab..49f312f9 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/summary.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/summary.html @@ -1,10 +1,12 @@ --- title: Summary weight: 10 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/summary.html layout: article params: - canonical: hibernate-maven-plugin/summary.html + canonical: /hibernate-maven-plugin/summary.html ---
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/team.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/team.html index 6a47ac9e..a8ab09ff 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/team.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/team.html @@ -1,10 +1,12 @@ --- title: Team weight: 11 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/team.html layout: article params: - canonical: hibernate-maven-plugin/team.html + canonical: /hibernate-maven-plugin/team.html ---
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/_index.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/_index.html index 580d9588..3e6873d0 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/_index.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/_index.html @@ -6,7 +6,7 @@ outputs: url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports.html layout: article params: - canonical: hibernate-maven-plugin/project-reports.html + canonical: /hibernate-maven-plugin/project-reports.html ---
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/cpd.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/cpd.html index 5f988af9..f0f9e919 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/cpd.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/cpd.html @@ -1,10 +1,12 @@ --- title: CPD weight: 17 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/cpd.html layout: article params: - canonical: hibernate-maven-plugin/cpd.html + canonical: /hibernate-maven-plugin/cpd.html ---
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/_index.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/_index.html index 8c4ff499..84349cad 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/_index.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/_index.html @@ -1,10 +1,12 @@ --- title: Plugin Documentation weight: 19 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/plugin-info.html layout: article params: - canonical: hibernate-maven-plugin/plugin-info.html + canonical: /hibernate-maven-plugin/plugin-info.html ---
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/create-mojo.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/create-mojo.html index 95cc5b04..0a3f8602 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/create-mojo.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/create-mojo.html @@ -1,10 +1,12 @@ --- title: Goal — hibernate:create weight: 21 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/create-mojo.html layout: article params: - canonical: hibernate-maven-plugin/create-mojo.html + canonical: /hibernate-maven-plugin/create-mojo.html ---
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/drop-mojo.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/drop-mojo.html index 4f7a6ef2..28773496 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/drop-mojo.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/drop-mojo.html @@ -1,10 +1,12 @@ --- title: Goal — hibernate:drop weight: 23 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/drop-mojo.html layout: article params: - canonical: hibernate-maven-plugin/drop-mojo.html + canonical: /hibernate-maven-plugin/drop-mojo.html ---
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/help-mojo.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/help-mojo.html index 645b47df..76d25832 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/help-mojo.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/help-mojo.html @@ -1,10 +1,12 @@ --- title: Goal — hibernate:help weight: 24 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/help-mojo.html layout: article params: - canonical: hibernate-maven-plugin/help-mojo.html + canonical: /hibernate-maven-plugin/help-mojo.html ---
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/update-mojo.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/update-mojo.html index bfc7c714..3e47f6b5 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/update-mojo.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/update-mojo.html @@ -1,10 +1,12 @@ --- title: Goal — hibernate:update weight: 22 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/update-mojo.html layout: article params: - canonical: hibernate-maven-plugin/update-mojo.html + canonical: /hibernate-maven-plugin/update-mojo.html ---
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/pmd.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/pmd.html index 8cfe93c1..860ce254 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/pmd.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/pmd.html @@ -1,10 +1,12 @@ --- title: PMD weight: 18 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pmd.html layout: article params: - canonical: hibernate-maven-plugin/pmd.html + canonical: /hibernate-maven-plugin/pmd.html ---
diff --git a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/skip.html b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/skip.html index 9ebb5cfd..7f8bd35d 100644 --- a/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/skip.html +++ b/exampleSite/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/skip.html @@ -1,10 +1,12 @@ --- title: Skipping Execution weight: 26 +outputs: + - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/skip.html layout: article params: - canonical: hibernate-maven-plugin/skip.html + canonical: /hibernate-maven-plugin/skip.html ---

Skipping Execution

@@ -34,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 @@ -46,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 @@ -65,7 +68,8 @@ params: ${foo.bar} -{{< /highlight >}}
+ +{{< /highlight >}}

This way, the plugin would be skipped, if you set the property diff --git a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/allclasses-frame.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/allclasses-frame.html index b2610211..c08af149 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/allclasses-frame.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/allclasses-noframe.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/allclasses-noframe.html index b9e82bf7..808b9ab3 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/allclasses-noframe.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/constant-values.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/constant-values.html index 2a6cc8ff..35396e97 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/constant-values.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html index 5a8423bc..37f0ae9c 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/CreateMojo.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/CreateMojo.html index 8553c90c..4cfd1d63 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/CreateMojo.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/DropMojo.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/DropMojo.html index 3fbe729f..216dbeef 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/DropMojo.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/HelpMojo.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/HelpMojo.html index 2f200c40..cb9b2769 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/HelpMojo.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html index e8f10cb5..6dce5478 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html index 8aba7312..6698ad74 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/UpdateMojo.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/UpdateMojo.html index ecb24e5b..1c8c4682 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/UpdateMojo.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html index 1edbf75c..eaab8bc7 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html index 726e684d..015db74a 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html index 9cf7425c..580f2ef9 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html index ab460a0d..c52f86f4 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html index d92a6352..37abb331 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html index 09f1c523..12c5055a 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/UpdateMojo.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/UpdateMojo.html index efae21e4..a4a6d7d0 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/class-use/UpdateMojo.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-frame.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-frame.html index f2d12549..6ede5aa1 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-frame.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-summary.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-summary.html index 58fdf99c..03908d68 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-summary.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-tree.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-tree.html index 0b2cd363..eb996ce8 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-tree.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-use.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-use.html index 9c4672d1..41d4e778 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/de/juplo/plugins/hibernate/package-use.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/deprecated-list.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/deprecated-list.html index f34944aa..13f73cdb 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/deprecated-list.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/help-doc.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/help-doc.html index 202a6c78..86d1cc27 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/help-doc.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/index-all.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/index-all.html index f88292ff..f8098564 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/index-all.html +++ b/exampleSite/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/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/index.html b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/index.html index fbb1136d..4d9fee12 100644 --- a/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/index.html +++ b/exampleSite/static/projects/hibernate-maven-plugin/2.1.1/apidocs/index.html @@ -2,7 +2,7 @@ - + Hibernate Maven Plugin 2.1.1 API