jvanzyl     01/09/15 07:29:20

  Modified:    .        build-tomcat4.xml build.xml
  Log:
  - moving all servlet container specific build information into
    the respective container build file.
  
  Revision  Changes    Path
  1.2       +8 -0      jakarta-turbine-tdk/build-tomcat4.xml
  
  Index: build-tomcat4.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-tdk/build-tomcat4.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build-tomcat4.xml 2001/09/12 19:51:29     1.1
  +++ build-tomcat4.xml 2001/09/15 14:29:20     1.2
  @@ -61,4 +61,12 @@
   
       <chmod dir="${tdk.dist}/bin" perm="+x" includes="**/*.sh"/>
     </target>
  +
  +  <target name="production-dist">
  +    <replace file="${tdk.dist}/conf/server.xml">
  +      <replacetoken><![CDATA[<!-- TDK SITE -->]]></replacetoken>
  +      <replacevalue><![CDATA[<Context path="" docBase="site" reloadable="true"/>]]>
  +      </replacevalue>
  +    </replace>
  +  </target>
   </project>
  
  
  
  1.9       +5 -15     jakarta-turbine-tdk/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-tdk/build.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- build.xml 2001/09/14 18:15:30     1.8
  +++ build.xml 2001/09/15 14:29:20     1.9
  @@ -44,14 +44,8 @@
   
       <ant antfile="build-${servlet.container}.xml"/>
       <ant antfile="build-libs.xml"/>
  -    
  -    <!-- We really only need these for the TRP and Flux.
  -         Flux should be handled more generally as a subapp
  -         because people may want to include several subapps. -->
  -
       <ant antfile="build-turbine2.xml"/>
       <ant antfile="build-turbine3.xml"/>
  -    
     </target>
   
     <!-- =================================================================== -->
  @@ -59,16 +53,12 @@
     <!-- =================================================================== -->
     <!-- This is a fully functional TDK distribution                         -->
     <!-- =================================================================== -->
  -
  -  <target name="production-dist" depends="docs,test-dist"
  -          description="--> generates the full TDK distribution">
  -    <property name="tmp.name" value="tdk-${tdk.version}"/>
   
  -    <replace file="${tdk.dist}/conf/server.xml">
  -      <replacetoken><![CDATA[<!-- TDK SITE -->]]></replacetoken>
  -      <replacevalue><![CDATA[<Context path="" docBase="site" reloadable="true"/>]]>
  -      </replacevalue>
  -    </replace>
  +  <target 
  +    name="production-dist" 
  +    depends="docs,test-dist"
  +    description="--> generates the full TDK distribution">
  +    <ant antfile="build-${servlet.container}.xml" target="production-dist"/>
     </target>
   
     <!-- =================================================================== -->
  
  
  

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

Reply via email to