From: Kai Moritz Date: Sun, 6 Nov 2016 15:26:49 +0000 (+0100) Subject: Corrected the description of the three golas create/update/drop X-Git-Tag: hibernate-maven-plugin-2.1.0~14 X-Git-Url: https://juplo.de/gitweb/?p=hibernate4-maven-plugin;a=commitdiff_plain;h=d7a81e54bda02c6ea5b08410c7de8eb8e24a192e Corrected the description of the three golas create/update/drop --- diff --git a/src/main/java/de/juplo/plugins/hibernate/CreateMojo.java b/src/main/java/de/juplo/plugins/hibernate/CreateMojo.java index 23f97a8f..cdba7a43 100644 --- a/src/main/java/de/juplo/plugins/hibernate/CreateMojo.java +++ b/src/main/java/de/juplo/plugins/hibernate/CreateMojo.java @@ -30,8 +30,8 @@ import org.hibernate.tool.schema.spi.TargetDescriptor; /** - * Goal which extracts the hibernate-mapping-configuration and - * exports an according SQL-database-schema. + * Generate/Execute SQL to create a database-schema that represents the + * configured mappings. * * @goal create * @phase process-classes diff --git a/src/main/java/de/juplo/plugins/hibernate/DropMojo.java b/src/main/java/de/juplo/plugins/hibernate/DropMojo.java index dd40387c..4037cff3 100644 --- a/src/main/java/de/juplo/plugins/hibernate/DropMojo.java +++ b/src/main/java/de/juplo/plugins/hibernate/DropMojo.java @@ -30,8 +30,8 @@ import org.hibernate.tool.schema.spi.TargetDescriptor; /** - * Goal which extracts the hibernate-mapping-configuration and - * exports an according SQL-database-schema. + * Generate/Execute SQL to drop all tables of a database-schema that represents + * the configured mappings. * * @goal drop * @phase process-classes diff --git a/src/main/java/de/juplo/plugins/hibernate/UpdateMojo.java b/src/main/java/de/juplo/plugins/hibernate/UpdateMojo.java index 91d978cf..c5237bdc 100644 --- a/src/main/java/de/juplo/plugins/hibernate/UpdateMojo.java +++ b/src/main/java/de/juplo/plugins/hibernate/UpdateMojo.java @@ -27,8 +27,8 @@ import org.hibernate.tool.schema.spi.TargetDescriptor; /** - * Goal which extracts the hibernate-mapping-configuration and - * exports an according SQL-database-schema. + * Generate/Execute SQL to update the database-schema according to the + * configured mappings. * * @goal update * @phase process-classes