root/releases/bedework-3.7/build/platforms/jboss.xml

Revision 2936 (checked in by douglm, 3 years ago)

Missing jar file in 3.6 build.

Also small comment fix

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     <if>
12       <isset property="org.bedework.appserver.deploy.dir" />
13       <then>
14         <!-- If requested copy in the activemq configuration. -->
15
16         <if>
17           <istrue value="${org.bedework.global.copy.activemq.config}" />
18           <then>
19             <copy file="${org.bedework.config.home}/activemq-ra.xml"
20                   tofile="${org.bedework.global.activemq.dir}/META-INF/ra.xml"
21                   overwrite="yes" />
22             <copy file="${org.bedework.config.home}/activemq-broker-config.xml"
23                   tofile="${org.bedework.global.activemq.dir}/broker-config.xml"
24                   overwrite="yes" />
25             <copy file="${org.bedework.config.home}/activemq-jms-ds.xml"
26                   tofile="${org.bedework.appserver.deploy.dir}/activemq-jms-ds.xml"
27                   overwrite="yes" />
28           </then>
29         </if>
30         <!-- If requested copy in the db configuration. -->
31
32         <if>
33           <istrue value="${org.bedework.global.copy.bedeworkds.config}" />
34           <then>
35             <copy file="${org.bedework.config.home}/bedework-ds.xml"
36                   tofile="${org.bedework.appserver.deploy.dir}/bedework-ds.xml"
37                   overwrite="yes" />
38           </then>
39         </if>
40       </then>
41     </if>
42   </target>
43 </project>
Note: See TracBrowser for help on using the browser.