stephenh    2002/08/13 20:06:22

  Modified:    .        build.xml
  Log:
  Perhaps this in a maven-b4 fluke, but copying the dtd over in the maven:jar target 
was not working. I moved it to the post-compile target I previously added for coping 
over the org/apache/torque/default.properties and it's working fine.
  
  Revision  Changes    Path
  1.56      +5 -4      jakarta-turbine-torque/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-torque/build.xml,v
  retrieving revision 1.55
  retrieving revision 1.56
  diff -u -r1.55 -r1.56
  --- build.xml 25 Jul 2002 04:05:13 -0000      1.55
  +++ build.xml 14 Aug 2002 03:06:21 -0000      1.56
  @@ -17,6 +17,11 @@
      <property name="maven.core.callback.post-compile.buildTarget" 
value="post-compile"/>
      <target name="post-compile">
        <copy file="src/conf/default.properties" 
todir="target/classes/org/apache/torque"/>
  +     <!-- copy database.dtd to the right place -->
  +     <copy
  +       file="src/dtd/database.dtd"
  +       todir="target/classes/org/apache/torque/engine/database/transform"
  +     />
      </target>
   
     <!-- ================================================================== -->
  @@ -53,10 +58,6 @@
   
     <target
       name="maven:jar">
  -    <!-- copy database.dtd to the right place -->
  -    <copy file="src/dtd/database.dtd"
  -      todir="target/classes/org/apache/torque/engine/database/transform"/>
  -
       <ant antfile="${maven.home}/build-maven.xml" target="jar"/>
     </target>
   
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to