From: Kai Moritz Date: Thu, 9 Apr 2026 17:29:58 +0000 (+0200) Subject: WIP:`hibernate-maven-plugin/2.1.2-SNAPSHOT` mit sili neu generiert X-Git-Url: https://juplo.de/gitweb/?a=commitdiff_plain;h=84914605402f375c061542f8946a1a0693fc6996;p=website WIP:`hibernate-maven-plugin/2.1.2-SNAPSHOT` mit sili neu generiert --- diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/_index.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/_index.html index 61e5f1ae..f28ebc2f 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/_index.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/_index.html @@ -4,6 +4,7 @@ weight: 0 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/ +layout: article ---

Hibernate Maven Plugin

@@ -129,8 +130,8 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/ - - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html index c548e391..9b82a9a6 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html @@ -4,6 +4,7 @@ weight: 20 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html +layout: article ---

Configuration Examples

@@ -24,20 +25,22 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html

-
-<plugin>
-  <groupId>de.juplo</groupId>
-  <artifactId>hibernate-maven-plugin</artifactId>
-  <version>2.1.2-SNAPSHOT</version>
-  <executions>
-    <execution>
-      <goals>
-        <goal>create</goal>
-      </goals>
-    </execution>
-  </executions>
-</plugin>
-
+{{< highlight guess >}} + + + de.juplo + hibernate-maven-plugin + 2.1.2-SNAPSHOT + + + + create + + + + + +{{< /highlight >}}

This would create the configured database. @@ -46,21 +49,23 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html

-
-<plugin>
-  <groupId>de.juplo</groupId>
-  <artifactId>hibernate-maven-plugin</artifactId>
-  <version>2.1.2-SNAPSHOT</version>
-  <executions>
-    <execution>
-      <goals>
-        <goal>drop</goal>
-        <goal>create</goal>
-      </goals>
-    </execution>
-  </executions>
-</plugin>
-
+{{< highlight guess >}} + + + de.juplo + hibernate-maven-plugin + 2.1.2-SNAPSHOT + + + + drop + create + + + + + +{{< /highlight >}}

A correspondin goal for the command update is missing in this @@ -75,13 +80,15 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/configuration.html

-
+{{< 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 >}}

But be aware, that using this configuration-approach the database-url, @@ -100,24 +107,26 @@ hibernate.connection.password=

-
-<plugin>
-  <groupId>de.juplo</groupId>
-  <artifactId>hibernate-maven-plugin</artifactId>
-  <version>2.1.2-SNAPSHOT</version>
-  <executions>
-    <execution>
-      <goals>
-        <goal>drop</goal>
-        <goal>create</goal>
-      </goals>
-    </execution>
-  </executions>
-  <configuration>
-    <url><![CDATA[jdbc:mysql://localhost/test-db]]></url>
-  </configuration>
-</plugin>
-
+{{< highlight guess >}} + + + de.juplo + hibernate-maven-plugin + 2.1.2-SNAPSHOT + + + + drop + create + + + + + + + + +{{< /highlight >}}

Configuration properties, that are set in the configuration-section @@ -162,17 +171,44 @@ hibernate.connection.password= the plugin-configuration, to be sure to have a separate database for testing):

- -
-
 
-

<properties> <hibernate.connection.driver_class>org.hsqldb.jdbcDriver</hibernate.connection.driver_class> <hibernate.dialect>org.hibernate.dialect.HSQLDialect</hibernate.dialect> <hibernate.connection.url><![CDATA[jdbc:hsqldb:res:org.my.path.production_db]]></hibernate.connection.url> <hibernate.connection.username>sa</hibernate.connection.username> <hibernate.connection.password></hibernate.connection.password> </properties>

-

-

<plugins>

-

-

<plugin> <groupId>de.juplo</groupId> <artifactId>hibernate-maven-plugin</artifactId> <version>2.1.2-SNAPSHOT</version> <executions> <execution> <goals> <goal>drop</goal> <goal>create</goal> </goals> </execution> </executions> <configuration> <url><![CDATA[jdbc:hsqldb:target/db/testdb;shutdown=true]]></url> </configuration> </plugin>

-

<plugins>

-
+
+
+{{< highlight guess >}} + + org.hsqldb.jdbcDriver + org.hibernate.dialect.HSQLDialect + + sa + + + +... + + + + ... + + + de.juplo + hibernate-maven-plugin + 2.1.2-SNAPSHOT + + + + drop + create + + + + + + + + + + +{{< /highlight >}}

This way, you can reuse the same properties to provide a @@ -207,28 +243,30 @@ hibernate.connection.password=

-
-<plugin>
-  <groupId>de.juplo</groupId>
-  <artifactId>hibernate-maven-plugin</artifactId>
-  <version>2.1.2-SNAPSHOT</version>
-  <executions>
-    <execution>
-      <goals>
-        <goal>drop</goal>
-        <goal>create</goal>
-      </goals>
-    </execution>
-  </executions>
-  <configuration>
-    <driver>org.hsqldb.jdbcDriver</driver>
-    <dialect>org.hibernate.dialect.HSQLDialect</dialect>
-    <url><![CDATA[jdbc:hsqldb:target/db/fotos;shutdown=true]]></url>
-    <username>sa</username>
-    <password></password>
-  </configuration>
-</plugin>
-
+{{< highlight guess >}} + + + de.juplo + hibernate-maven-plugin + 2.1.2-SNAPSHOT + + + + drop + create + + + + + org.hsqldb.jdbcDriver + org.hibernate.dialect.HSQLDialect + + sa + + + + +{{< /highlight >}}

The parameter hibernateProperties (name of the hibernate-properties-file @@ -280,24 +318,26 @@ hibernate.connection.password=

-
-<plugin>
-  <groupId>de.juplo</groupId>
-  <artifactId>hibernate-maven-plugin</artifactId>
-  <version>2.1.2-SNAPSHOT</version>
-  <executions>
-    <execution>
-      <goals>
-        <goal>drop</goal>
-        <goal>create</goal>
-      </goals>
-    </execution>
-  </executions>
-  <configuration>
-    <password>${my-password-property}</password>
-  </configuration>
-</plugin>
-
+{{< highlight guess >}} + + + de.juplo + hibernate-maven-plugin + 2.1.2-SNAPSHOT + + + + drop + create + + + + + ${my-password-property} + + + +{{< /highlight >}} @@ -323,8 +363,8 @@ hibernate.connection.password= - - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/debugging.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/debugging.html index cb40a32d..42bbbbd8 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/debugging.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/debugging.html @@ -4,6 +4,7 @@ weight: 25 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/debugging.html +layout: article ---

Enable Debugging-Output

@@ -18,8 +19,10 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/debugging.html

-
-mvn -X compile hibernate:create
+{{< highlight guess >}} + +mvn -X compile hibernate:create +{{< /highlight >}}

(The compile might be necessary, because hibernate-maven-plugin @@ -60,8 +63,8 @@ mvn -X compile hibernate:create - - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/force.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/force.html index 6debee18..4d03dd5c 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/force.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/force.html @@ -4,6 +4,7 @@ weight: 27 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/force.html +layout: article ---

Force Execution

@@ -32,15 +33,17 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/force.html

-
-<plugin>
-  <groupId>de.juplo</groupId>
-  <artifactId>hibernate-maven-plugin</artifactId>
-  <version>2.1.2-SNAPSHOT</version>
-  <configuration>
-    <force>true</force>
-  </configuration>
-</plugin>
+{{< highlight guess >}} + + + de.juplo + hibernate-maven-plugin + 2.1.2-SNAPSHOT + + true + + +{{< /highlight >}}

Or you may specify -Dhibernate.schema.force=true at the command line, @@ -71,8 +74,8 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/force.html - - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pitfalls.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pitfalls.html index 88147ecf..9ab3158a 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pitfalls.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pitfalls.html @@ -4,6 +4,7 @@ weight: 28 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pitfalls.html +layout: article ---

Known Pitfalls (FAQ)

@@ -33,10 +34,12 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pitfalls.html

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

But even when no database is to be created, hibernate always needs to know @@ -59,7 +62,8 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pitfalls.html

-
+{{< highlight guess >}}
+
 [INFO] Gathered hibernate-configuration (turn on debugging for details):
 [INFO]   hibernate.connection.username = sa
 [INFO]   hibernate.connection.password = 
@@ -82,13 +86,14 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pitfalls.html
 [INFO] Finished at: Mon Mar 07 19:06:54 CET 2016
 [INFO] Final Memory: 11M/215M
 [INFO] ------------------------------------------------------------------------
-[ERROR] Failed to execute goal de.juplo:hibernate-maven-plugin:2.1.2-SNAPSHOT:drop (default) on project hibernate4-properties-test: Could not open the JDBC-connection: Unable to load class [org.h2.Driver]: Could not load requested class : org.h2.Driver -> [Help 1]
+[ERROR] Failed to execute goal de.juplo:hibernate-maven-plugin:2.1.2-SNAPSHOT:drop (default) on project hibernate4-properties-test: Could not open the JDBC-connection: Unable to load class [org.h2.Driver]: Could not load requested class : org.h2.Driver -> [Help 1]
 [ERROR] 
 [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
 [ERROR] Re-run Maven using the -X switch to enable full debug logging.
 [ERROR] 
 [ERROR] For more information about the errors and possible solutions, please read the following articles:
-[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
+[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException +{{< /highlight >}}

A quick workaround for this error would be, to delete the runtime-constraint @@ -101,27 +106,29 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pitfalls.html

-
-<plugin>
-  <groupId>de.juplo</groupId>
-  <artifactId>hibernate-maven-plugin</artifactId>
-  <version>2.1.2-SNAPSHOT</version>
-  <executions>
-    <execution>
-      <goals>
-        <goal>drop</goal>
-        <goal>create</goal>
-      </goals>
-    </execution>
-  </executions>
-  <dependencies>
-  <dependency>
-    <groupId>org.hsqldb</groupId>
-    <artifactId>hsqldb</artifactId>
-    <version>2.2.8</version>
-  </dependency>
-  </dependencies>
-</plugin>
+{{< highlight guess >}} + + + de.juplo + hibernate-maven-plugin + 2.1.2-SNAPSHOT + + + + drop + create + + + + + + org.hsqldb + hsqldb + 2.2.8 + + + +{{< /highlight >}}

This is also the best way, if you use a different jdbc-driver for @@ -159,14 +166,16 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pitfalls.html

-
-<plugin>
-  <groupId>org.codehaus.mojo</groupId>
-  <artifactId>dbunit-maven-plugin</artifactId>
-  <configuration>
-    <skip>${hibernate.schema.skipped}</skip>
-  </configuration>
-</plugin>
+{{< highlight guess >}} + + + org.codehaus.mojo + dbunit-maven-plugin + + ${hibernate.schema.skipped} + + +{{< /highlight >}}

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

@@ -181,9 +190,11 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pitfalls.html

-
+{{< highlight guess >}}
+
 [INFO] No modified annotated classes found and dialect unchanged.
-[INFO] Skipping schema generation!
+[INFO] Skipping schema generation! +{{< /highlight >}}

If one always uses mvn clean for cleanup, this will not happen. @@ -191,8 +202,10 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pitfalls.html

-
-mvn hibernate:create -Dhibernate.schema.force=true
+{{< highlight guess >}} + +mvn hibernate:create -Dhibernate.schema.force=true +{{< /highlight >}}

The hibernate:create goal is not executed, when tests are skipped

@@ -203,15 +216,17 @@ mvn hibernate:create -Dhibernate.schema.force=true

-
-<plugin>
-  <groupId>de.juplo</groupId>
-  <artifactId>hibernate-maven-plugin</artifactId>
+{{< highlight guess >}}
+
+
+  de.juplo
+  hibernate-maven-plugin
   ...
-  <configuration>
-    <skip>false</skip>
-  </configuration>
-</plugin>
+ + false + + +{{< /highlight >}}

Background-information for this design-decission can be found on the extra @@ -228,15 +243,17 @@ mvn hibernate:create -Dhibernate.schema.force=true

-
-<plugin>
-  <groupId>de.juplo</groupId>
-  <artifactId>hibernate-maven-plugin</artifactId>
+{{< highlight guess >}}
+
+
+  de.juplo
+  hibernate-maven-plugin
   ...
-  <configuration>
-    <scanDependencies>none</scanDependencies>
-  </configuration>
-</plugin>
+ + none + + +{{< /highlight >}}

No annotated classes found

@@ -272,30 +289,32 @@ mvn hibernate:create -Dhibernate.schema.force=true

-
-<executions>
-  <execution>
-    <id>Create Drop-Schema</id>
-    <phase>test-compile</phase>
-    <goals>
-      <goal>drop</goal>
-    </goals>
-    <configuration>
-      <outputFile>db-schema/drop-schema.ddl</outputFile>
-    </configuration>
-  </execution>
-  <execution>
-    <id>Create Create-Schema</id>
-    <phase>test-compile</phase>
-    <goals>
-      <goal>create</goal>
-    </goals>
-    <configuration>
-      <outputFile>db-schema/create-schema.ddl</outputFile>
-    </configuration>
-  </execution>
-</executions>
-
+{{< highlight guess >}} + + + + Create Drop-Schema + test-compile + + drop + + + db-schema/drop-schema.ddl + + + + Create Create-Schema + test-compile + + create + + + db-schema/create-schema.ddl + + + + +{{< /highlight >}} @@ -321,8 +340,8 @@ mvn hibernate:create -Dhibernate.schema.force=true - - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/_index.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/_index.html index b7aa8083..d5586c38 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/_index.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/_index.html @@ -4,6 +4,7 @@ weight: 1 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info.html +layout: article ---
@@ -72,8 +73,8 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info.html - - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/ci-management.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/ci-management.html index 14f7a456..3be3c3df 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/ci-management.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/ci-management.html @@ -4,6 +4,7 @@ weight: 2 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/ci-management.html +layout: article ---
@@ -36,8 +37,8 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/ci-management.html - - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/dependencies.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/dependencies.html index 91dd00c8..9683b6bc 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/dependencies.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/dependencies.html @@ -4,6 +4,7 @@ weight: 3 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/dependencies.html +layout: article ---
@@ -1217,8 +1218,8 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/dependencies.html - - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/dependency-info.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/dependency-info.html index 341e78a0..4349f61b 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/dependency-info.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/dependency-info.html @@ -4,6 +4,7 @@ weight: 4 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/dependency-info.html +layout: article ---
@@ -34,8 +35,8 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/dependency-info.html - - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/distribution-management.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/distribution-management.html index 33dd0aaa..5523ce65 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/distribution-management.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/distribution-management.html @@ -4,6 +4,7 @@ weight: 5 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/distribution-management.html +layout: article ---
@@ -36,8 +37,8 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/distribution-management.htm - - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/licenses.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/licenses.html index d6063c39..4de4e33c 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/licenses.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/licenses.html @@ -4,6 +4,7 @@ weight: 6 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/licenses.html +layout: article ---
@@ -12,6 +13,7 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/licenses.html

Project Licenses

The Apache Software License, Version 2.0

A business-friendly OSS license

+

Can't read the url [http://www.apache.org/licenses/LICENSE-2.0.txt] : Connect timed out

@@ -37,8 +39,8 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/licenses.html - - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/plugin-management.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/plugin-management.html index d060f524..1a166dd3 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/plugin-management.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/plugin-management.html @@ -4,6 +4,7 @@ weight: 7 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/plugin-management.html +layout: article ---
@@ -54,8 +55,8 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/plugin-management.html - - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/plugins.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/plugins.html index f6ae0e7f..439c064b 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/plugins.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/plugins.html @@ -4,6 +4,7 @@ weight: 8 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/plugins.html +layout: article ---
@@ -132,8 +133,8 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/plugins.html - - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/scm.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/scm.html index 664f8f64..c498d5a0 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/scm.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/scm.html @@ -4,6 +4,7 @@ weight: 9 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/scm.html +layout: article ---
@@ -36,8 +37,8 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/scm.html - - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/summary.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/summary.html index 5884519e..9343c0b0 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/summary.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/summary.html @@ -4,6 +4,7 @@ weight: 10 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/summary.html +layout: article ---
@@ -69,8 +70,8 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/summary.html - - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/team.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/team.html index b945203c..44b25333 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/team.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-info/team.html @@ -4,6 +4,7 @@ weight: 11 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/team.html +layout: article ---
@@ -111,8 +112,8 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/team.html - - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/_index.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/_index.html index 07ecd328..672fa410 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/_index.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/_index.html @@ -4,6 +4,7 @@ weight: 12 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports.html +layout: article ---
@@ -60,8 +61,8 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports.html - - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/apidocs/index.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/apidocs/index.html index 396025c1..eec1516c 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/apidocs/index.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/apidocs/index.html @@ -2,6 +2,6 @@ title: JavaDocs weight: 14 --- - + -

View JavaDocs

+

View JavaDocs

diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/cpd.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/cpd.html index b626f5e1..8081fd1b 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/cpd.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/cpd.html @@ -4,6 +4,7 @@ weight: 17 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/cpd.html +layout: article ---
@@ -22,16 +23,17 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/cpd.html 41
-
public class CreateMojo extends AbstractSchemaMojo
+{{< highlight guess >}}
+public class CreateMojo extends AbstractSchemaMojo
 {
   /**
    * Output file.
-   * <p>
+   * 

* If the specified filename is not absolut, the file will be created * relative to the project build directory - * (<code>project.build.directory</code>). + * (project.build.directory). * - * @parameter property="hibernate.schema.create" default-value="create.sql" + * @parameter property="hibernate.schema.create" default-value="create.sql" * @since 1.0 */ private String outputFile; @@ -77,7 +79,8 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/cpd.html } }; - tool.getSchemaCreator(config).doCreation(metadata, options, source, target);

+ tool.getSchemaCreator(config).doCreation(metadata, options, source, target); +{{< /highlight >}}
@@ -103,8 +106,8 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/cpd.html - - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/_index.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/_index.html index 82de3d56..ce6b2056 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/_index.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/_index.html @@ -4,6 +4,7 @@ weight: 19 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/plugin-info.html +layout: article ---
@@ -48,33 +49,35 @@ configured mappings.

Usage

You should specify the version in your project's plugin configuration:

-
<project>
+{{< highlight guess >}}
+
   ...
-  <build>
-    <!-- To define the plugin version in your parent POM -->
-    <pluginManagement>
-      <plugins>
-        <plugin>
-          <groupId>de.juplo</groupId>
-          <artifactId>hibernate-maven-plugin</artifactId>
-          <version>2.1.2-SNAPSHOT</version>
-        </plugin>
+  
+    
+    
+      
+        
+          de.juplo
+          hibernate-maven-plugin
+          2.1.2-SNAPSHOT
+        
         ...
-      </plugins>
-    </pluginManagement>
-    <!-- To use the plugin goals in your POM or parent POM -->
-    <plugins>
-      <plugin>
-        <groupId>de.juplo</groupId>
-        <artifactId>hibernate-maven-plugin</artifactId>
-        <version>2.1.2-SNAPSHOT</version>
-      </plugin>
+      
+    
+    
+    
+      
+        de.juplo
+        hibernate-maven-plugin
+        2.1.2-SNAPSHOT
+      
       ...
-    </plugins>
-  </build>
+    
+  
   ...
-</project>
-
+ + +{{< /highlight >}}

For more information, see "Guide to Configuring Plug-ins"

@@ -101,8 +104,8 @@ configured mappings.
- - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/create-mojo.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/create-mojo.html index b4172291..2fa7f91f 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/create-mojo.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/create-mojo.html @@ -4,6 +4,7 @@ weight: 21 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/create-mojo.html +layout: article ---
@@ -945,8 +946,8 @@ and, hence, not picked up from their configuration!

- - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/drop-mojo.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/drop-mojo.html index 07f3b5de..4f147257 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/drop-mojo.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/drop-mojo.html @@ -4,6 +4,7 @@ weight: 23 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/drop-mojo.html +layout: article ---
@@ -945,8 +946,8 @@ and, hence, not picked up from their configuration!

- - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/help-mojo.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/help-mojo.html index 7f686e10..37c5b255 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/help-mojo.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/help-mojo.html @@ -4,6 +4,7 @@ weight: 24 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/help-mojo.html +layout: article ---
@@ -178,8 +179,8 @@ goals will be displayed.
- - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/update-mojo.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/update-mojo.html index c4e76107..5b15563d 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/update-mojo.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/plugin-info/update-mojo.html @@ -4,6 +4,7 @@ weight: 22 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/update-mojo.html +layout: article ---
@@ -945,8 +946,8 @@ and, hence, not picked up from their configuration!

- - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/pmd.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/pmd.html index 7c11f6d4..ed952b34 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/pmd.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/pmd.html @@ -4,6 +4,7 @@ weight: 18 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pmd.html +layout: article ---
@@ -78,8 +79,8 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/pmd.html - - + + diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/testapidocs/index.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/testapidocs/index.html index b6bb98aa..b816b40e 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/testapidocs/index.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/testapidocs/index.html @@ -2,6 +2,6 @@ title: Test JavaDocs weight: 13 --- - + -

View Test JavaDocs

+

View Test JavaDocs

diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/xref-test/index.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/xref-test/index.html index 7919e19f..c1d7d546 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/xref-test/index.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/xref-test/index.html @@ -2,6 +2,6 @@ title: Test Source Xref weight: 16 --- - + -

View Test Source Xref

+

View Test Source Xref

diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/xref/index.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/xref/index.html index e09ea4a9..76b8a443 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/xref/index.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/project-reports/xref/index.html @@ -2,6 +2,6 @@ title: Source Xref weight: 15 --- - + -

View Source Xref

+

View Source Xref

diff --git a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/skip.html b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/skip.html index 413d56c0..b8be0296 100644 --- a/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/skip.html +++ b/content/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/skip.html @@ -4,6 +4,7 @@ weight: 26 outputs: - html url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/skip.html +layout: article ---

Skipping Execution

@@ -35,15 +36,17 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/skip.html

-
-<plugin>
-  <groupId>de.juplo</groupId>
-  <artifactId>hibernate-maven-plugin</artifactId>
+{{< highlight guess >}}
+
+
+  de.juplo
+  hibernate-maven-plugin
   ...
-  <configuration>
-    <skip>false</skip>
-  </configuration>
-</plugin>
+ + false + + +{{< /highlight >}}

Or, if you want the plugin to be executed by default and to be skipped @@ -52,15 +55,17 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/skip.html

-
-<plugin>
-  <groupId>de.juplo</groupId>
-  <artifactId>hibernate-maven-plugin</artifactId>
+{{< highlight guess >}}
+
+
+  de.juplo
+  hibernate-maven-plugin
   ...
-  <configuration>
-    <skip>${foo.bar}</skip>
-  </configuration>
-</plugin>
+ + ${foo.bar} + + +{{< /highlight >}}

This way, the plugin would be skipped, if you set the property @@ -92,8 +97,8 @@ url: /projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/skip.html - - + + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/allclasses-index.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/allclasses-index.html index 4a5d4a2f..7a7503b5 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/allclasses-index.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/allclasses-index.html @@ -1,11 +1,11 @@ - + Alle Klassen und Schnittstellen (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/allpackages-index.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/allpackages-index.html index 76a3db32..bf158964 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/allpackages-index.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/allpackages-index.html @@ -1,11 +1,11 @@ - + Alle Packages (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/constant-values.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/constant-values.html index 9cacfb94..c2556f3f 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/constant-values.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/constant-values.html @@ -1,11 +1,11 @@ - + Konstantenfeldwerte (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html index c5291897..e05c9c3f 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html @@ -1,11 +1,11 @@ - + AbstractSchemaMojo (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/CreateMojo.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/CreateMojo.html index 44e9ff8a..4ff5188b 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/CreateMojo.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/CreateMojo.html @@ -1,11 +1,11 @@ - + CreateMojo (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/DropMojo.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/DropMojo.html index 3a8d42a7..86b7eefb 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/DropMojo.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/DropMojo.html @@ -1,11 +1,11 @@ - + DropMojo (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/HelpMojo.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/HelpMojo.html index b27a0568..73775417 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/HelpMojo.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/HelpMojo.html @@ -1,11 +1,11 @@ - + HelpMojo (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html index 7dcb62e0..752d904e 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html @@ -1,11 +1,11 @@ - + ModificationTracker (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html index 405b53b2..5a89e5c6 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html @@ -1,11 +1,11 @@ - + MutableClassLoader (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/UpdateMojo.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/UpdateMojo.html index 92a0a7b3..b8cdfae5 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/UpdateMojo.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/UpdateMojo.html @@ -1,11 +1,11 @@ - + UpdateMojo (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html index 93b2e503..e2e6172c 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html @@ -1,11 +1,11 @@ - + Verwendungsweise von Klasse de.juplo.plugins.hibernate.AbstractSchemaMojo (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html index bf8abea4..b5d37b26 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html @@ -1,11 +1,11 @@ - + Verwendungsweise von Klasse de.juplo.plugins.hibernate.CreateMojo (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html index 3c420dfc..7f3acef4 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html @@ -1,11 +1,11 @@ - + Verwendungsweise von Klasse de.juplo.plugins.hibernate.DropMojo (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html index e8f7c924..bc5cf5b3 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html @@ -1,11 +1,11 @@ - + Verwendungsweise von Klasse de.juplo.plugins.hibernate.HelpMojo (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html index f321d9d0..c5d1a672 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html @@ -1,11 +1,11 @@ - + Verwendungsweise von Klasse de.juplo.plugins.hibernate.ModificationTracker (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html index 3af5a405..79079b9c 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html @@ -1,11 +1,11 @@ - + Verwendungsweise von Klasse de.juplo.plugins.hibernate.MutableClassLoader (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/UpdateMojo.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/UpdateMojo.html index 54731033..70cdfe12 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/UpdateMojo.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/class-use/UpdateMojo.html @@ -1,11 +1,11 @@ - + Verwendungsweise von Klasse de.juplo.plugins.hibernate.UpdateMojo (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/package-summary.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/package-summary.html index bf5fe742..b49716cb 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/package-summary.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/package-summary.html @@ -1,11 +1,11 @@ - + de.juplo.plugins.hibernate (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/package-tree.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/package-tree.html index 751b09b7..9d81a039 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/package-tree.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/package-tree.html @@ -1,11 +1,11 @@ - + de.juplo.plugins.hibernate Klassenhierarchie (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/package-use.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/package-use.html index af9a1d14..1f2bc49e 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/package-use.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/de/juplo/plugins/hibernate/package-use.html @@ -1,11 +1,11 @@ - + Verwendungsweise von Package de.juplo.plugins.hibernate (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/help-doc.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/help-doc.html index 03a6859b..398c4c76 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/help-doc.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/help-doc.html @@ -1,11 +1,11 @@ - + API-Hilfe (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/index-all.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/index-all.html index bc9e8c5d..bb4c56b6 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/index-all.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/index-all.html @@ -1,11 +1,11 @@ - + Index (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/index.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/index.html index 2399b4f7..2e7008d4 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/index.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/index.html @@ -1,11 +1,11 @@ - + Hibernate Maven Plugin 2.1.2-SNAPSHOT API - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/overview-tree.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/overview-tree.html index 4cdf6f46..9497d018 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/overview-tree.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/overview-tree.html @@ -1,11 +1,11 @@ - + Klassenhierarchie (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/search.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/search.html index 3ed1a49c..b776dc3b 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/search.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/apidocs/search.html @@ -1,11 +1,11 @@ - + Suchen (Hibernate Maven Plugin 2.1.2-SNAPSHOT API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/allclasses-index.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/allclasses-index.html index 9eecbaac..91673779 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/allclasses-index.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/allclasses-index.html @@ -1,11 +1,11 @@ - + Alle Klassen und Schnittstellen (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/allpackages-index.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/allpackages-index.html index 0abee508..5d031e73 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/allpackages-index.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/allpackages-index.html @@ -1,11 +1,11 @@ - + Alle Packages (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/de/juplo/test/FileComparator.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/de/juplo/test/FileComparator.html index 99108542..35ee42be 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/de/juplo/test/FileComparator.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/de/juplo/test/FileComparator.html @@ -1,11 +1,11 @@ - + FileComparator (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/de/juplo/test/class-use/FileComparator.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/de/juplo/test/class-use/FileComparator.html index b3282ede..14167a4c 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/de/juplo/test/class-use/FileComparator.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/de/juplo/test/class-use/FileComparator.html @@ -1,11 +1,11 @@ - + Verwendungsweise von Klasse de.juplo.test.FileComparator (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/de/juplo/test/package-summary.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/de/juplo/test/package-summary.html index 5fd61188..c8bde0fc 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/de/juplo/test/package-summary.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/de/juplo/test/package-summary.html @@ -1,11 +1,11 @@ - + de.juplo.test (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/de/juplo/test/package-tree.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/de/juplo/test/package-tree.html index d07b990a..d3990fd5 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/de/juplo/test/package-tree.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/de/juplo/test/package-tree.html @@ -1,11 +1,11 @@ - + de.juplo.test Klassenhierarchie (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/de/juplo/test/package-use.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/de/juplo/test/package-use.html index f8c28c58..84367e1d 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/de/juplo/test/package-use.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/de/juplo/test/package-use.html @@ -1,11 +1,11 @@ - + Verwendungsweise von Package de.juplo.test (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/help-doc.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/help-doc.html index 7aa247ef..ac45c93d 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/help-doc.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/help-doc.html @@ -1,11 +1,11 @@ - + API-Hilfe (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/index-all.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/index-all.html index d63bab1f..169c17da 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/index-all.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/index-all.html @@ -1,11 +1,11 @@ - + Index (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/index.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/index.html index 6c4f9120..daf7a7b1 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/index.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/index.html @@ -1,11 +1,11 @@ - + Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/overview-tree.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/overview-tree.html index a1d9999d..9c0737cc 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/overview-tree.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/overview-tree.html @@ -1,11 +1,11 @@ - + Klassenhierarchie (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API) - + diff --git a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/search.html b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/search.html index eb533e54..6e34b50f 100644 --- a/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/search.html +++ b/static/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/testapidocs/search.html @@ -1,11 +1,11 @@ - + Suchen (Hibernate Maven Plugin 2.1.2-SNAPSHOT Test API) - +