vmassol     2003/01/25 09:06:07

  Modified:    .        gump.xml build.xml
  Log:
  Started to add the Ant Petal build to the master build and to the gump build.
  
  Revision  Changes    Path
  1.37      +28 -0     jakarta-cactus/gump.xml
  
  Index: gump.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/gump.xml,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- gump.xml  23 Jan 2003 08:13:10 -0000      1.36
  +++ gump.xml  25 Jan 2003 17:06:07 -0000      1.37
  @@ -191,6 +191,34 @@
   
     <!--
        ========================================================================
  +       Build the Cactus Ant Petal for J2EE 1.3
  +     ========================================================================
  +  -->
  +  <project name="jakarta-cactus-petal-ant-13">
  +
  +    <ant buildfile="petals/ant/build.xml" target="dist">
  +
  +      <depend property="servlet.jar" project="jakarta-servletapi-4"/>
  +      <depend property="log4j.jar" project="jakarta-log4j"/>
  +      <depend property="commons.logging.jar" project="commons-logging" id="all"/>
  +      <depend property="commons.httpclient.jar" project="commons-httpclient"/>
  +      <depend property="httpunit.jar" project="httpunit"/>
  +      <depend property="aspectjrt.jar" project="aspectj" id="aspectjrt"/>
  +      <depend property="junit.jar" project="junit"/>
  +      <depend property="cactus.framework.jar" 
project="jakarta-cactus-framework-13"/>
  +
  +    </ant>
  +  
  +    <depend project="jakarta-ant" inherit="runtime"/>
  +    <depend project="xml-xerces"/>
  +    <depend project="aspectj"/>
  +
  +    <nag from="Vincent Massol &lt;[EMAIL PROTECTED]&gt;"
  +         to="[EMAIL PROTECTED]"/>
  +  </project>
  +
  +  <!--
  +     ========================================================================
          Build the Cactus Servlet Sample for J2EE 1.3
        ========================================================================
     -->
  
  
  
  1.37      +27 -2     jakarta-cactus/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/build.xml,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- build.xml 22 Jan 2003 18:02:39 -0000      1.36
  +++ build.xml 25 Jan 2003 17:06:07 -0000      1.37
  @@ -209,6 +209,19 @@
   
       </target>
   
  +    <!-- Run Ant Petal dist target -->
  +    <target name="run.petal.ant" depends="init, run.framework">
  +
  +        <ant target="dist" antfile="petals/ant/build.xml"
  +            inheritAll="false">
  +
  +            <property file="build.properties"/>
  +            <property file="${user.home}/build.properties"/>
  +
  +        </ant>
  +
  +    </target>
  +
       <!-- Run Cactus Servlet Sample dist target -->
       <target name="run.sample-servlet" depends="run.anttasks,run.framework">
   
  @@ -263,7 +276,7 @@
   
       <!-- Run the dist target of all dependent projects -->
       <target name="run"
  -        
depends="run.anttasks,run.framework,run.sample-servlet,run.documentation,run.clover">
  +        
depends="run.anttasks,run.framework,run.petal.ant,run.sample-servlet,run.documentation,run.clover">
       </target>
   
       <!--
  @@ -386,6 +399,18 @@
   
       </target>
   
  +    <target name="clean.petal.ant" depends="clean.anttasks,clean.framework">
  +
  +        <ant target="clean" antfile="petals/ant/build.xml"
  +            inheritAll="false">
  +
  +            <property file="build.properties" />
  +            <property file="${user.home}/build.properties" />
  +
  +        </ant>
  +
  +    </target>
  +
       <target name="clean.sample-servlet" depends="clean.anttasks,clean.framework">
   
           <ant target="clean" antfile="sample-servlet/build.xml"
  @@ -421,7 +446,7 @@
       </target>
   
       <target name="clean"
  -        
depends="clean.cactus,clean.anttasks,clean.framework,clean.sample-servlet,clean.documentation"
  +        
depends="clean.cactus,clean.anttasks,clean.framework,clean.petal.ant,clean.sample-servlet,clean.documentation"
           description="Clean all generated files">
       </target>
   
  
  
  

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

Reply via email to