root/trunk/deployment/testsuite/shellscr/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.app.lib}"
13               name="junit" version="4.4" />
14
15       <getJar lib="${org.bedework.temp.extrajars.dir}"
16               libcache="${org.bedework.libcache.dir}"
17               name="bw-appcommon" version="3.5"
18               projecthome="${project.home}/projects/webapps" />
19
20       <getJar lib="${org.bedework.temp.extrajars.dir}"
21               libcache="${org.bedework.libcache.dir}"
22               name="bw-testsuite" version="3.5"
23               projecthome="${project.home}/projects/testsuite" />
24     </sequential>
25  </macrodef>
26 </project>
Note: See TracBrowser for help on using the browser.