User: starksm 
  Date: 01/05/21 12:51:38

  Modified:    src/build build.xml
  Log:
  Added a servlet that is loaded on startup to test deployment ordering
  between wars and ears
  
  Revision  Changes    Path
  1.31      +23 -4     jbosstest/src/build/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/src/build/build.xml,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- build.xml 2001/05/11 05:11:28     1.30
  +++ build.xml 2001/05/21 19:51:38     1.31
  @@ -72,11 +72,21 @@
       />
     </target>
   
  -  <!-- =================================================================== -->
  -  <!-- Creates the jar archives                                            -->
  -  <!-- =================================================================== -->
  -  <target name="jar" depends="compile">
  +<!-- ===================================================================
  +### Begin testcase build targets
  +     =================================================================== -->
   
  +  <!-- Creates the test jar archives. To add a new test suite add create a
  +    build file in the subprojects directory using one of the existing build-x.xml
  +    files as a template and then add a <antcall target="bank-x" /> statement
  +    to the following jar target.
  +    Also add a target like:
  +        <target name="x-subproject" depends="prepare">
  +            <ant antfile="src/build/subprojects/build-x.xml" />
  +        </target>
  +    after the existing targets below.
  +  -->
  +  <target name="jar" depends="compile">
       <antcall target="bank-subproject" />
       <antcall target="hello-subproject" />
       <antcall target="idgen-subproject" />
  @@ -96,6 +106,7 @@
       <antcall target="security-subproject" />
       <antcall target="web-subproject" />
       <antcall target="jmsra-subproject" />
  +    <antcall target="logging-subproject" />
     </target>
   
       <target name="bank-subproject" depends="prepare">
  @@ -170,6 +181,14 @@
           <!-- JMS ra tests -->
           <ant antfile="src/build/subprojects/build-jmsra.xml" />
       </target>
  +    <target name="logging-subproject" depends="prepare">
  +        <!-- Log4j logging tests -->
  +        <ant antfile="src/build/subprojects/build-logging.xml" />
  +    </target>
  +<!-- ===================================================================
  +### End testcase build targets
  +     =================================================================== -->
  +
   
     <!-- =================================================================== -->
     <!-- Creates the binary structure                                        -->
  
  
  

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

Reply via email to