|
Revision 3096
(checked in by douglm, 3 years ago)
|
Propagate change to activemq config to avoid producer delays.
Change to build of services to allow specification of no default libraries. Requires services to specify explicitly the libraries they need in their deployment appjars.xml file. Chnage configs and appjars for sysevlog, monitor and genkeys. Significantly reduces number of jars loaded.
Fix genkeys config - it specified the monitor classloader repository
|
| 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-calfacade" version="${org.bedework.calendarapi.version}" |
|---|
| 15 |
projecthome="${bw.project.home}/projects/calendarapi" /> |
|---|
| 16 |
|
|---|
| 17 |
<getJar lib="${org.bedework.temp.extrajars.dir}" |
|---|
| 18 |
libcache="${org.bedework.libcache.dir}" |
|---|
| 19 |
name="rpiutil" version="${org.bedework.rpiutil.version}" project="rpiutil" |
|---|
| 20 |
projecthome="${bw.project.home}/projects/rpiutil" /> |
|---|
| 21 |
|
|---|
| 22 |
<getJar lib="${org.bedework.temp.extrajars.dir}" |
|---|
| 23 |
libcache="${org.bedework.libcache.dir}" |
|---|
| 24 |
name="commons-codec" version="1.3"/> |
|---|
| 25 |
|
|---|
| 26 |
</sequential> |
|---|
| 27 |
</macrodef> |
|---|
| 28 |
</project> |
|---|