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 21:48:46 UTC

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

Author: snoopdave
Date: Tue Sep 13 12:48:41 2005
New Revision: 280635

URL: http://svn.apache.org/viewcvs?rev=280635&view=rev
Log:
Turns out the Hibernate3 DTD references are *very* important

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=280635&r1=280634&r2=280635&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/build.xml (original)
+++ incubator/roller/branches/roller_2.0/build.xml Tue Sep 13 12:48:41 2005
@@ -140,9 +140,15 @@
 
     <replace dir="${build.compile_beans}/org/roller/pojos"
         token="Hibernate Mapping DTD 2.0//EN" 
-	    value="Hibernate Mapping DTD 3.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"/>
+        
+    <replace dir="${build.compile_beans}/org/roller/business"
+        token="Hibernate Mapping DTD 2.0//EN" 
+        value="Hibernate Mapping DTD 3.0//EN"/>
+    <replace dir="${build.compile_beans}/org/roller/business"
         token="hibernate-mapping-2.0.dtd" 
         value="hibernate-mapping-3.0.dtd"/>