You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by ce...@apache.org on 2001/08/06 22:43:53 UTC

cvs commit: jakarta-struts build-webapps.xml

cedric      01/08/06 13:43:53

  Modified:    .        build-webapps.xml
  Log:
  Enable contrib/tile build.
  Add two calls to tiles/build.xml file (in build-webapps, target dist and compile).
  
  Revision  Changes    Path
  1.4       +21 -0     jakarta-struts/build-webapps.xml
  
  Index: build-webapps.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/build-webapps.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build-webapps.xml	2001/03/18 17:56:56	1.3
  +++ build-webapps.xml	2001/08/06 20:43:53	1.4
  @@ -185,6 +185,16 @@
           <include name="**/*.js"/>
         </fileset>
       </copy>
  +	
  +	<!-- Compile Tiles contrib -->
  +    <ant  antFile="build.xml"  dir="contrib/tiles"  target="compile.for.struts">
  +      <property name="struts.libs"      value="../../${struts.libs}"/>
  +      <property name="build.home"       value="../../${build.home}/tiles"/>
  +      <property name="dist.home"        value="../../${dist.home}"/>
  +      <property name="app.name"         value="tiles"/>
  +      <property name="project.name"     value="Tiles"/>
  +    </ant>
  +	
   
   </target>
   
  @@ -231,6 +241,17 @@
   -->
   <target name="dist" depends="dist.generic"
           description="Create distribution output of web applications">
  +		
  +	<!-- Compile Tiles dist -->
  +    <ant  antFile="build.xml"  dir="contrib/tiles"  target="dist.for.struts">
  +      <property name="struts.libs"      value="../../${struts.libs}"/>
  +      <property name="build.home"       value="../../${build.home}/tiles"/>
  +      <property name="dist.home"        value="../../${dist.home}"/>
  +      <property name="app.name"         value="tiles"/>
  +      <property name="project.name"     value="Tiles"/>
  +    </ant>
  +	
  +
   </target>