Corrected the description of the three golas create/update/drop
authorKai Moritz <kai@juplo.de>
Sun, 6 Nov 2016 15:26:49 +0000 (16:26 +0100)
committerKai Moritz <kai@juplo.de>
Sun, 13 Nov 2016 16:37:15 +0000 (17:37 +0100)
src/main/java/de/juplo/plugins/hibernate/CreateMojo.java
src/main/java/de/juplo/plugins/hibernate/DropMojo.java
src/main/java/de/juplo/plugins/hibernate/UpdateMojo.java

index 23f97a8..cdba7a4 100644 (file)
@@ -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
index dd40387..4037cff 100644 (file)
@@ -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
index 91d978c..c5237bd 100644 (file)
@@ -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