User: user57  
  Date: 01/08/31 17:44:19

  Modified:    website  build.xml
  Log:
   o the build pulls from cvs, so I have to check in these with test data to
     make sure it works
  
  Revision  Changes    Path
  1.4       +20 -4     build/website/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/build/website/build.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.xml 2001/08/31 23:22:13     1.3
  +++ build.xml 2001/09/01 00:44:19     1.4
  @@ -10,7 +10,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.3 2001/08/31 23:22:13 user57 Exp $ -->
  +<!-- $Id: build.xml,v 1.4 2001/09/01 00:44:19 user57 Exp $ -->
   
   <project default="main" name="JBoss Website/Build">
   
  @@ -417,13 +417,29 @@
     <!-- Generate the Website                                               -->
     <!-- ================================================================== -->
   
  -  <target name="website-run-once" depends="init">
  -  </target>
  -
     <target name="website" depends="init">
  +    <!-- just to be sure, lets clean first -->
  +    <call target="call-clean"/>
  +
  +    <!-- all-jars should generate all the deployables -->
  +    <call target="all-jars"/>
     </target>
   
     <target name="website-install" depends="init">
  +    <!-- we need to know where to deploy files to -->
  +    <require property="jboss.deploy.root"/>
  +
  +    <!-- copy the deployables -->
  +    <copy todir="${jboss.deploy.root}">
  +      <fileset dir="${project.root}/manual/output/lib">
  +        <include name="manual.ear"/>
  +      </fileset>
  +      <fileset dir="${project.root}/website/output/lib">
  +        <include name="website.ear"/>
  +      </fileset>
  +    </copy>
  +
  +    <!-- might have to touch some files to redeploy properly -->
     </target>
   
   </project>
  
  
  

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

Reply via email to