You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by sn...@apache.org on 2005/09/13 18:27:56 UTC

svn commit: r280584 - /incubator/roller/branches/roller_2.0/build.xml

Author: snoopdave
Date: Tue Sep 13 09:27:53 2005
New Revision: 280584

URL: http://svn.apache.org/viewcvs?rev=280584&view=rev
Log:
Hack to use Hibernate3 DTD seems to speed-up Hibernate init

Modified:
    incubator/roller/branches/roller_2.0/build.xml

Modified: incubator/roller/branches/roller_2.0/build.xml
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/build.xml?rev=280584&r1=280583&r2=280584&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/build.xml (original)
+++ incubator/roller/branches/roller_2.0/build.xml Tue Sep 13 09:27:53 2005
@@ -138,6 +138,14 @@
         <hibernate validatexml="true" version="2.0"/>
     </hibernatedoclet>
 
+    <replace dir="${build.compile_beans}/org/roller/pojos"
+        token="Hibernate Mapping DTD 2.0//EN" 
+	    value="Hibernate Mapping DTD 3.0//EN"/>
+        	
+    <replace dir="${build.compile_beans}/org/roller/pojos"
+        token="hibernate-mapping-2.0.dtd" 
+        value="hibernate-mapping-3.0.dtd"/>
+        
 </target>
 
 <!-- ============================================== -->