root/trunk/deployment/monitor/shellscr/appjars.xml

Revision 3415 (checked in by douglm, 1 year ago)

(Partial updates as full update failed with some conflict)

Major refactoring of code to move all jar building into separate projects outside of the main bedework project which itself becomes an assembly project - that is it builds deployable components from the jars and other information.

This change is to facilitate the move to jboss 7.

Further changes are needed but probably no more major reorganization.

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-sysevents" version="${org.bedework.sysevents.version}"
15               projecthome="${bw.project.home}/../bwsysevents" />
16      
17       <getJar lib="${org.bedework.temp.extrajars.dir}"
18               libcache="${org.bedework.libcache.dir}"
19               name="bw-interfaces" version="${org.bedework.interfaces.version}"
20               projecthome="${project.home}/../bwinterfaces" />
21
22       <getJar lib="${org.bedework.temp.extrajars.dir}"
23               libcache="${org.bedework.libcache.dir}"
24               name="rpiaccess"
25               version="${org.bedework.access.version}" project="access"
26               projecthome="${bw.project.home}/../access" />
27
28     </sequential>
29  </macrodef>
30 </project>
Note: See TracBrowser for help on using the browser.