From: <max...@us...> - 2006-02-23 18:05:30
|
Update of /cvsroot/hibernate/HibernateExt/tools/src/testsupport In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15356/src/testsupport Modified Files: anttest-build.xml NoopReverseEngineeringStrategy.java Log Message: HBX-574 column exclude + fixed some tests Index: anttest-build.xml =================================================================== RCS file: /cvsroot/hibernate/HibernateExt/tools/src/testsupport/anttest-build.xml,v retrieving revision 1.28 retrieving revision 1.29 diff -u -d -r1.28 -r1.29 --- anttest-build.xml 17 Feb 2006 16:31:57 -0000 1.28 +++ anttest-build.xml 23 Feb 2006 18:05:22 -0000 1.29 @@ -44,6 +44,7 @@ <hbm2ddl update="true" outputfilename="updateonly.sql" format="true"/> <hbm2doc/> </hibernatetool> + </target> <target name="testantjdbccfg"> @@ -274,9 +275,11 @@ <antcall target="afterCfg2hbm"/> </target> - <mkdir dir="${build.dir}/noconinfo"/> + <target name="noconinfoexport" description="hbm2ddl without connection info"> - <taskdef name="hibernatetool" classname="org.hibernate.tool.ant.HibernateToolTask" classpathref="tasks.classpath"/> + <mkdir dir="${build.dir}/noconinfo"/> + + <taskdef name="hibernatetool" classname="org.hibernate.tool.ant.HibernateToolTask" classpathref="tasks.classpath"/> <hibernatetool destdir="${build.dir}/noconinfo"> <configuration configurationfile="noconnectioninfo-hibernate.cfg.xml"> Index: NoopReverseEngineeringStrategy.java =================================================================== RCS file: /cvsroot/hibernate/HibernateExt/tools/src/testsupport/NoopReverseEngineeringStrategy.java,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- NoopReverseEngineeringStrategy.java 8 Jan 2006 15:08:01 -0000 1.12 +++ NoopReverseEngineeringStrategy.java 23 Feb 2006 18:05:22 -0000 1.13 @@ -94,4 +94,9 @@ // TODO Auto-generated method stub return null; } + + public boolean excludeColumn(TableIdentifier identifier, String columnName) { + // TODO Auto-generated method stub + return false; + } } |