|
Revision 3537
(checked in by douglm, 1 year ago)
|
Two intertwined updates here.
Most projects are changed to go some way towards maven. Use maven-ant tasks to deal with build dependencies. Mostly chnages to build.xml and the additon of pom.xml.
Additionally, added a new bedenote project which handles JMS messages. This removes the need for special support from activemq.
Removed the auto-deploy of activemq config and made it a special target - "deployActivemq"
To install this stuff:
1. Check out the bedenote project
2. execute the deployActivemq target
3. Build/deploy bedenote
4. Restart
|
| Line | |
|---|
| 1 |
# |
|---|
| 2 |
# Configure a development build of the calendar. |
|---|
| 3 |
# |
|---|
| 4 |
|
|---|
| 5 |
compile.debug=yes |
|---|
| 6 |
|
|---|
| 7 |
org.bedework.configurations.home=${env.BEDEWORK_CONFIGS_HOME} |
|---|
| 8 |
|
|---|
| 9 |
org.bedework.configuration.defaults=${org.bedework.configurations.home}/.defaults |
|---|
| 10 |
|
|---|
| 11 |
org.bedework.configuration.versions=${org.bedework.configuration.defaults}/versions.properties |
|---|
| 12 |
|
|---|
| 13 |
org.bedework.activemq.configurations=${org.bedework.configuration.defaults} |
|---|
| 14 |
org.bedework.config.home=${env.BEDEWORK_CONFIG} |
|---|
| 15 |
|
|---|
| 16 |
# This file will be included first. Any properties set here will override those |
|---|
| 17 |
# in the default properties file. |
|---|
| 18 |
org.bedework.config.override.properties=${env.BEDEWORK_CONFIG}/cal.properties |
|---|
| 19 |
|
|---|
| 20 |
# This is the default properties file included after the one above. |
|---|
| 21 |
org.bedework.config.properties=${org.bedework.configuration.defaults}/cal.properties |
|---|
| 22 |
|
|---|
| 23 |
org.bedework.config.options=${env.BEDEWORK_CONFIG}/cal.options.xml |
|---|
| 24 |
#org.bedework.config.options=${org.bedework.configuration.defaults}/cal.options.xml |
|---|
| 25 |
|
|---|
| 26 |
#org.bedework.config.sysevents.properties=${org.bedework.configuration.defaults}/sysevents.properties |
|---|
| 27 |
org.bedework.config.sysevents.properties=${env.BEDEWORK_CONFIG}/sysevents.properties |
|---|
| 28 |
|
|---|
| 29 |
# Where we deploy the logging config from |
|---|
| 30 |
org.bedework.config.logging=${org.bedework.configuration.defaults}/log4j.xml |
|---|