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

  Modified:    jetty    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.8       +7 -8      contrib/jetty/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/contrib/jetty/build.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- build.xml 2001/09/11 05:29:12     1.7
  +++ build.xml 2001/09/12 00:08:42     1.8
  @@ -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. -->
  @@ -239,9 +242,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"/>
  @@ -369,8 +369,8 @@
        | different type of docuementation that is to be generated.
      -->
   
  -  <target name="docs" depends="init" description="Builds all documentation.">
  -    <call target="docs-api"/>
  +  <target name="docs" depends="init, docs-api" 
  +       description="Builds all documentation.">
     </target>
   
     <!-- Javadocs is an exception, but provide a docs-api to conform. -->
  @@ -481,9 +481,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