root/trunk/build/platforms/tomcat5War.xml

Revision 1939 (checked in by douglm, 5 years ago)

Minor build fixes

Line 
1 <?xml version="1.0"?>
2
3 <!-- ===================================================================
4      This file is imported by buildwar.xml and adds a target
5         doPortal
6      which will be invoked by the buildwar targets.
7      =================================================================== -->
8
9 <project name="bedework.platformWar" default="doPlatform" >
10   <target name="doPlatform" >
11     <property name="propval.app.tomcat.context.xml"
12               location="${app.sou.dir}/war/META-INF/context.xml" />
13     <resolveFile name="app.tomcat.context.xml"
14                  file="${propval.app.tomcat.context.xml}"
15                  base="${app.sou.dir}"/>
16
17     <copy tofile="${app.dest.metainf}/context.xml"
18           file="${app.tomcat.context.xml}"
19           overwrite="yes" >
20       <filterset refid="property.filters" />
21     </copy>
22
23     <copy todir="${app.dest.lib}" file="${org.bedework.appjar.log4j}"/>
24   </target>
25 </project>
Note: See TracBrowser for help on using the browser.