]> juplo.de Git - hibernate4-maven-plugin/commitdiff
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 23f97a8fe97a0e54b345fb32206dad475a8ec7da..cdba7a432ca1bcd6222554bd8277f00860e8a9d6 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 dd40387c9ff918cd180d66ac3b2176c01cae0ec6..4037cff35f594a6eba481104f9c081efda6782dc 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 91d978cf8b8a40e5102e9c8d8482def8f40e6743..c5237bdc065414d834630fdffdd251e81ea395fe 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