[seam-commits] Seam SVN: r9086 - trunk/seam-gen.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Mon Sep 22 03:23:07 EDT 2008


Author: dan.j.allen
Date: 2008-09-22 03:23:06 -0400 (Mon, 22 Sep 2008)
New Revision: 9086

Modified:
   trunk/seam-gen/build.xml
Log:
use none rather than validate for hibernate.hbm2ddl.auto when database exists
the validate flag causes more problems than a care to say


Modified: trunk/seam-gen/build.xml
===================================================================
--- trunk/seam-gen/build.xml	2008-09-22 07:21:33 UTC (rev 9085)
+++ trunk/seam-gen/build.xml	2008-09-22 07:23:06 UTC (rev 9086)
@@ -54,7 +54,7 @@
                 <equals arg1="${database.drop}" arg2="n"/>
             </and>
         </condition>
-        <condition property="hibernate.hbm2ddl.auto" value="validate">
+        <condition property="hibernate.hbm2ddl.auto" value="none">
             <and>
                 <equals arg1="${database.exists}" arg2="y"/>
                 <equals arg1="${database.drop}" arg2="n"/>




More information about the seam-commits mailing list