|
Revision 3772
(checked in by douglm, 1 month ago)
|
Make sure property filters are available.
|
| Line | |
|---|
| 1 |
<?xml version="1.0"?> |
|---|
| 2 |
|
|---|
| 3 |
<!-- =================================================================== |
|---|
| 4 |
This file is imported by termination/build.xml and adds the targets |
|---|
| 5 |
which will be invoked by that file. |
|---|
| 6 |
doPlatform - misc stuff |
|---|
| 7 |
=================================================================== --> |
|---|
| 8 |
|
|---|
| 9 |
<project name="bedework.platformTermination" default="doPlatform" > |
|---|
| 10 |
<target name="doPlatform" > |
|---|
| 11 |
<buildfilters/> |
|---|
| 12 |
|
|---|
| 13 |
<!-- If requested copy in the db configuration. |
|---|
| 14 |
|
|---|
| 15 |
<if> |
|---|
| 16 |
<istrue value="${org.bedework.global.copy.bedeworktzds.config}" /> |
|---|
| 17 |
<then> |
|---|
| 18 |
<copy file="${org.bedework.config.home}/bedework-tz-ds.xml" |
|---|
| 19 |
tofile="${org.bedework.appserver.deploy.dir}/bedework-tz-ds.xml" |
|---|
| 20 |
overwrite="yes" /> |
|---|
| 21 |
</then> |
|---|
| 22 |
</if> |
|---|
| 23 |
--> |
|---|
| 24 |
<!-- Copy in the default configuration(s) if they appear to be missing --> |
|---|
| 25 |
<if> |
|---|
| 26 |
<not> |
|---|
| 27 |
<available file="${org.bedework.data.dir}/tzsvr/config.xml" /> |
|---|
| 28 |
</not> |
|---|
| 29 |
<then> |
|---|
| 30 |
<copy file="${org.bedework.tzsvr.configs}" |
|---|
| 31 |
tofile="${org.bedework.data.dir}/tzsvr/config.xml" > |
|---|
| 32 |
<filterset refid="property.filters" /> |
|---|
| 33 |
</copy> |
|---|
| 34 |
</then> |
|---|
| 35 |
</if> |
|---|
| 36 |
</target> |
|---|
| 37 |
</project> |
|---|