User: dmaplesden
  Date: 01/09/12 16:16:04

  Modified:    jboss    build.xml
  Log:
  Change default configuration to start RARDeployer before AutoDeployer
  
  Revision  Changes    Path
  1.26      +21 -26    build/jboss/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/build/jboss/build.xml,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- build.xml 2001/09/12 02:10:22     1.25
  +++ build.xml 2001/09/12 23:16:04     1.26
  @@ -10,7 +10,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.25 2001/09/12 02:10:22 schaefera Exp $ -->
  +<!-- $Id: build.xml,v 1.26 2001/09/12 23:16:04 dmaplesden Exp $ -->
   
   <project default="main" name="JBoss/Build">
   
  @@ -652,67 +652,61 @@
         </fileset>
       </copy>
         
  -    <!-- Copy the mail service xml snippet  (deploy/lib) -->  
  -    <copy todir="${install.deploy.lib}" filtering="no">
  +    <!-- Copy the mail service xml snippet  (deploy) -->      
  +    <copy todir="${install.deploy}" filtering="no">
         <fileset dir="${_module.output}/etc/conf/default">
            <include name="mail-service.xml"/>
         </fileset>
       </copy>
   
  -    <!-- Copy the core service xml snippet  (deploy/lib) -->  
  -    <copy todir="${install.deploy.lib}" filtering="no">
  +    <!-- Copy the core service xml snippet  (deploy) -->      
  +    <copy todir="${install.deploy}" filtering="no">
         <fileset dir="${_module.output}/etc/conf/default">
            <include name="core-service.xml"/>
         </fileset>
       </copy>
   
  -    <!-- Copy the jetty service xml snippet  (deploy/lib)     
  +    <!-- Copy the jetty service xml snippet  (deploy)         
   
   Disable for the moment
   
  -    <copy todir="${install.deploy.lib}" filtering="no">
  +    <copy todir="${install.deploy}" filtering="no">
         <fileset dir="${_module.output}/etc/conf/default">
            <include name="jetty-service.xml"/>
         </fileset>
       </copy>
   -->
  -    <!-- Copy the jbossmq service xml snippet  (deploy/lib) -->       
  -    <copy todir="${install.deploy.lib}" filtering="no">
  -      <fileset dir="${_module.output}/etc/conf/default">
  -         <include name="jbossmq-service.xml"/>
  -      </fileset>
  -    </copy>
   
  -    <!-- Copy the jms service xml snippet  (deploy/lib) -->   
  -    <copy todir="${install.deploy.lib}" filtering="no">
  +    <!-- Copy the jms service xml snippet  (deploy) -->       
  +    <copy todir="${install.deploy}" filtering="no">
         <fileset dir="${_module.output}/etc/conf/default">
            <include name="jms-service.xml"/>
         </fileset>
       </copy>
   
  -    <!-- Copy the j2eedeployment service xml snippet  (deploy/lib) -->        
  -    <copy todir="${install.deploy.lib}" filtering="no">
  +    <!-- Copy the j2eedeployment service xml snippet  (deploy) -->    
  +    <copy todir="${install.deploy}" filtering="no">
         <fileset dir="${_module.output}/etc/conf/default">
            <include name="j2eedeployment-service.xml"/>
         </fileset>
       </copy>
   
  -    <!-- Copy the hsql defaultds service xml snippet  (deploy/lib) -->        
  -    <copy todir="${install.deploy.lib}" filtering="no">
  +    <!-- Copy the hsql defaultds service xml snippet  (deploy) -->    
  +    <copy todir="${install.deploy}" filtering="no">
         <fileset dir="${_module.output}/etc/conf/default">
            <include name="hsql-default-service.xml"/>
         </fileset>
       </copy>
   
  -    <!-- Copy the jmx-adaptor.jsr  (deploy/lib) -->   
  -    <copy todir="${install.deploy.lib}" filtering="no">
  +    <!-- Copy the jmx-adaptor.jsr  (deploy) -->       
  +    <copy todir="${install.deploy}" filtering="no">
         <fileset dir="${_module.output}/lib">
            <include name="jmx-html-adaptor.jsr"/>
         </fileset>
       </copy>
   
  -    <!-- Copy the jmx-rmi-connector.jsr  (deploy/lib) -->     
  -    <copy todir="${install.deploy.lib}" filtering="no">
  +    <!-- Copy the jmx-rmi-connector.jsr  (deploy) -->         
  +    <copy todir="${install.deploy}" filtering="no">
         <fileset dir="${_module.output}/lib">
            <include name="jmx-rmi-connector.jsr"/>
         </fileset>
  @@ -744,7 +738,6 @@
            <!--<exclude name="default/jetty-service.xml"/>-->
            <exclude name="default/jms-service.xml"/>
            <exclude name="default/j2eedeployment-service.xml"/>
  -         <exclude name="default/jbossmq-service.xml"/>
            <exclude name="default/hsql-default-service.xml"/>
         </fileset>
       </copy>
  @@ -866,6 +859,7 @@
       <copy todir="${install.lib.ext}" filtering="no">
         <fileset dir="${_module.output}/lib">
            <include name="jbosscx.sar"/>
  +         <include name="RARDeployer.jar"/>
         </fileset>
       </copy>
   
  @@ -896,8 +890,9 @@
       <property name="_module.output" override="true"
              value="${project.root}/${_module.name}/output"/>
   
  -    <!-- Copy the jbossmq service xml snippet  (deploy/lib) -->       
  -    <copy todir="${install.deploy.lib}" filtering="no">
  +    <!-- Copy the jbossmq service xml snippet  (deploy) -->   
  +    <mkdir dir="${install.deploy}"/>
  +    <copy todir="${install.deploy}" filtering="no">
         <fileset dir="${_module.output}/etc/conf/default">
            <include name="jbossmq-service.xml"/>
         </fileset>
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to