User: user57  
  Date: 01/09/26 15:25:29

  Modified:    .        build.xml
  Log:
   o copy of dtd's needs to be done from compile-snapshots, or by a target
     which depends on it, since it uses the checked out server module to
     get these file... which is a bad idea, but at least now this project
     will build again.
  
  Revision  Changes    Path
  1.13      +16 -10    newsite/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/newsite/build.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- build.xml 2001/09/26 20:16:36     1.12
  +++ build.xml 2001/09/26 22:25:29     1.13
  @@ -10,7 +10,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.12 2001/09/26 20:16:36 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.13 2001/09/26 22:25:29 user57 Exp $ -->
   
   <project default="main" name="JBoss/Website">
   
  @@ -264,8 +264,13 @@
        |  different type of compile that needs to be performed, short of
        |  documentation compiles.
       -->
  -  <target name="compile" depends="init, compile-docs, compile-metadata, 
compile-bin, compile-snapshots"
  -       description="Compile all source files."/>
  +  <target name="compile" 
  +       description="Compile all source files."
  +       depends="init, 
  +                compile-docs, 
  +                   compile-metadata, 
  +                   compile-bin, 
  +                   compile-snapshots"/>
   
     <!-- Compile doc sources & support files -->
     <target name="compile-docs" depends="init">
  @@ -275,13 +280,6 @@
            <include name="**/*"/>
         </fileset>
       </copy>
  -   <!-- Make the JBoss DTDs available under j2ee/dtd -->
  -   <mkdir dir="${build.docs}/j2ee/dtd"/>
  -    <copy todir="${build.docs}/j2ee/dtd" filtering="no">
  -      <fileset 
dir="${build.snapshots}/jboss-all/server/src/resources/org/jboss/metadata">
  -         <include name="*.dtd"/>
  -      </fileset>
  -    </copy>
     </target>
   
     <!-- Compile metadata -->
  @@ -339,6 +337,14 @@
           <include name="**/*"/>
         </fileset>
       </zip>
  +
  +    <!-- Make the JBoss DTDs available under j2ee/dtd -->
  +    <mkdir dir="${build.docs}/j2ee/dtd"/>
  +    <copy todir="${build.docs}/j2ee/dtd" filtering="no">
  +      <fileset 
dir="${build.snapshots}/jboss-all/server/src/resources/org/jboss/metadata">
  +         <include name="*.dtd"/>
  +      </fileset>
  +    </copy>
     </target>
   
   
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to