root/trunk/deployment/webuser/webapp/appjars.xml

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

Near completion of build rebuild.

Each deployment fetches the extra jars it needs out of the project and places them in a well-known directory.

Less copying of files takes place now.

  • Property svn:eol-style set to LF
Line 
1 <?xml version="1.0"?>
2
3 <!-- ===================================================================
4      Fetch extra jars for this application
5      =================================================================== -->
6 <project name="extraJars" basedir="." default="">
7   <macrodef name="getExtraJars">
8     <sequential>
9       <delete dir="${org.bedework.temp.extrajars.dir}" />
10       <mkdir dir="${org.bedework.temp.extrajars.dir}" />
11
12       <getJar lib="${org.bedework.temp.extrajars.dir}"
13               libcache="${org.bedework.libcache.dir}"
14               name="bw-webcommon" version="3.5"
15               projecthome="${project.home}/projects/webapps" />
16     </sequential>
17  </macrodef>
18 </project>
Note: See TracBrowser for help on using the browser.