User: user57  
  Date: 01/09/11 17:08:42

  Modified:    .        build.xml
  Log:
   o moved all task.properties includes to the bottom of _configure
   o changed non init or configure <call> usage to use depends=""
  
  Revision  Changes    Path
  1.14      +8 -11     jbossmq/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbossmq/build.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- build.xml 2001/09/11 05:29:12     1.13
  +++ build.xml 2001/09/12 00:08:42     1.14
  @@ -10,7 +10,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.13 2001/09/11 05:29:12 user57 Exp $ -->
  +<!-- $Id: build.xml,v 1.14 2001/09/12 00:08:42 user57 Exp $ -->
   
   <project default="main" name="JBoss/Messaging">
   
  @@ -145,6 +145,9 @@
       <call target="_configure-libraries"/>
       <call target="_configure-modules"/>
       <call target="_configure-tasks"/>
  +
  +    <!-- Load common task properties -->
  +    <property resource="planet57/tools/buildmagic/task.properties"/>
     </target>
   
     <!-- Configure the thirdparty tools required to build this module. -->
  @@ -268,9 +271,6 @@
   
     <!-- Configure the tasks used by this module. -->
     <target name="_configure-tasks" unless="configure-tasks.disable">
  -    <!-- Load common task properties -->
  -    <property resource="planet57/tools/buildmagic/task.properties"/>
  -
       <!-- Where source files live -->
       <property name="source.java" value="${module.source}/main"/>
       <property name="source.etc" value="${module.source}/etc"/>
  @@ -486,10 +486,8 @@
        | different type of docuementation that is to be generated.
      -->
   
  -  <target name="docs" depends="init" description="Builds all documentation.">
  -    <call target="docs-api"/>
  -    <call target="docs-examples"/>
  -    <call target="docs-static"/>
  +  <target name="docs" depends="init, docs-api, docs-examples, docs-static" 
  +       description="Builds all documentation.">
     </target>
   
     <!-- Javadocs is an exception, but provide a docs-api to conform. -->
  @@ -621,9 +619,8 @@
        | Run all tests.
      -->
   
  -  <target name="tests" depends="init" description="Execute all tests.">
  -    <call target="tests-junit"/>
  -    <call target="tests-reports"/>
  +  <target name="tests" depends="init, tests-junit, tests-reports" 
  +       description="Execute all tests.">
     </target>
   
     <!--
  
  
  

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

Reply via email to