User: starksm 
  Date: 01/11/27 22:26:16

  Modified:    .        Tag: Branch_2_4 build.xml
  Log:
  Add support for package version manifest headers
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.33.2.2  +17 -10    jboss/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/build.xml,v
  retrieving revision 1.33.2.1
  retrieving revision 1.33.2.2
  diff -u -r1.33.2.1 -r1.33.2.2
  --- build.xml 2001/10/01 17:15:53     1.33.2.1
  +++ build.xml 2001/11/28 06:26:16     1.33.2.2
  @@ -15,9 +15,9 @@
     release-tag="JBoss_2_4_2"
   To build the latest 2.4 branch chode use:
     release-tag="Branch_2_4"
  -b. tomcat323: set to the absolute path of the jakarta-tomcat-3.2.3 distribution
  +b. tomcat3x: set to the absolute path of the jakarta-tomcat-3.2.3 distribution
   This is required to build the contrib/tomcat bundle
  -c. tomcat40: set to the absolute path of the jakarta-tomcat-4.0 distribution 
  +c. tomcat4x: set to the absolute path of the jakarta-tomcat-4.0 distribution 
   This is required to build the contrib/catalina bundle
   
   3. Execute the dist target by running Ant1.3 in the directory created
  @@ -27,18 +27,25 @@
   directory with the JBoss/Catalina bundle.
   
   -->
  -<project name="2.4.x Dist" default="dist">
  +<project name="JBoss-2.4.x Dist" default="dist">
     <property file=".ant.properties" />
   
  +  <property name="release" value="2.4.4"/>
     <!-- Change to the cvs release tag you want to build -->
  -  <property name="release-tag" value="JBoss_2_4_2" />
  +  <property name="release-tag" value="JBoss_2_4_4" />
     <!-- The CVSROOT value -->
     <property name="cvsroot" 
value=":pserver:[EMAIL PROTECTED]:/cvsroot/jboss" />
     <!-- The location of the jakarta-tomcat-3.2.3 distribution -->
  -  <property name="tomcat323" value="/home/starksm/cvsroot/jakarta-tomcat-3.2.3" />
  +  <property name="tomcat3x" value="/home/starksm/cvsroot/jakarta-tomcat-3.2.4" />
     <!-- The location of the jakarta-tomcat-4.0 distribution -->
  -  <property name="tomcat40" value="/home/starksm/cvsroot/jakarta-tomcat-4.0" />
  +  <property name="tomcat4x" value="/home/starksm/cvsroot/jakarta-tomcat-4.0.1" />
   
  +  <target name="init" unless="build.time">
  +    <tstamp>
  +       <format property="build.time" pattern="yyyy-MM-dd HH:mm:ss z" />
  +    </tstamp>
  +  </target>
  +
     <!-- Retrieve the SourceForge JBoss modules -->
     <target name="do-cvs">
       <echo message="Checking out JBossServer"/>
  @@ -129,7 +136,7 @@
       <antcall target="do-cvs" />
     </target>
   
  -  <target name="build" depends = "cvs-co">
  +  <target name="build" depends = "cvs-co,init">
       <ant antfile="src/build/build.xml" dir="jboss" target="main" />
       <ant antfile="src/build/build.xml" dir="jnp" target="src-install" />
       <ant antfile="src/build/build.xml" dir="jbosssx" target="src-install" />
  @@ -142,10 +149,10 @@
     <target name="dist" depends="build">
       <ant antfile="src/build/build.xml" dir="jboss" target="main" />
       <ant antfile="src/build/build.xml" dir="contrib/tomcat" target="bundle">
  -      <property name="tomcat.dist" value="${tomcat323}" />
  +      <property name="tomcat.dist" value="${tomcat3x}" />
       </ant>
       <ant antfile="src/build/build.xml" dir="contrib/catalina" target="bundle">
  -      <property name="catalina.dist" value="${tomcat40}" />
  +      <property name="catalina.dist" value="${tomcat4x}" />
       </ant>
     </target>
   
  @@ -159,5 +166,5 @@
       <ant antfile="src/build/build.xml" dir="contrib/tomcat" target="clean" />
       <ant antfile="src/build/build.xml" dir="contrib/catalina" target="clean" />
     </target>
  -</project>
   
  +</project>
  
  
  

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

Reply via email to