User: slaboure
  Date: 01/11/09 15:02:20

  Modified:    .        build.xml
  Log:
  Clustering for SFSB: added HASessionState interfaces to compilation
  
  Revision  Changes    Path
  1.17      +25 -24    jbossmx/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbossmx/build.xml,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- build.xml 2001/11/09 06:26:36     1.16
  +++ build.xml 2001/11/09 23:02:20     1.17
  @@ -10,7 +10,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.16 2001/11/09 06:26:36 chirino Exp $ -->
  +<!-- $Id: build.xml,v 1.17 2001/11/09 23:02:20 slaboure Exp $ -->
   
   <project default="main" name="JBoss/Cluster">
   
  @@ -29,9 +29,9 @@
   
       <!-- Setup the basic project roots. -->
       <path id="project.root"><pathelement location=".."/></path>
  -    <property name="project.root" refid="project.root"/> 
  +    <property name="project.root" refid="project.root"/>
       <property name="project.build" value="${project.root}/build"/>
  -  
  +
       <!-- Include user and project property overrides. -->
       <property file="${user.home}/.buildmagic.properties"/>
       <property file="${user.home}/.ant.properties"/>
  @@ -130,7 +130,7 @@
     <!--
        | Configure the build system.
        |
  -     | Configuration elements should be placed in the appropriate 
  +     | Configuration elements should be placed in the appropriate
        | _configure-* targets.
      -->
   
  @@ -324,14 +324,14 @@
     <!-- Compile                                                            -->
     <!-- ================================================================== -->
   
  -  <!-- 
  +  <!--
        |  Compile everything.
        |
  -     |  This target should depend on other compile-* targets for each 
  +     |  This target should depend on other compile-* targets for each
        |  different type of compile that needs to be performed, short of
        |  documentation compiles.
       -->
  -  <target name="compile" 
  +  <target name="compile"
          depends="compile-classes, compile-rmi"
          description="Compile all source files."/>
   
  @@ -393,7 +393,7 @@
     <!-- Archives                                                           -->
     <!-- ================================================================== -->
   
  -  <!-- 
  +  <!--
        |  Build all jar files.
       -->
     <target name="jars" depends="compile" description="Builds all jar files.">
  @@ -420,6 +420,7 @@
       <jar jarfile="${build.lib}/jbossha-client.jar">
         <fileset dir="${build.classes}">
           <include name="org/jboss/ha/framework/interfaces/**"/>
  +        <include name="org/jboss/ha/hasessionstate/interfaces/**"/>
           <include name="org/jboss/ejb/plugins/**/interfaces/**"/>
           <include name="org/jboss/ha/**/*Stub.class"/>
           <exclude name="org/jbossmx/**"/>
  @@ -440,22 +441,22 @@
     <!-- Documents                                                          -->
     <!-- ================================================================== -->
   
  -  <!-- 
  +  <!--
        | Create all generated documenation.
        |
  -     | This target should depend on other docs-* targets for each 
  +     | This target should depend on other docs-* targets for each
        | different type of docuementation that is to be generated.
      -->
   
  -  <target name="docs" depends="init, docs-api, docs-examples" 
  +  <target name="docs" depends="init, docs-api, docs-examples"
          description="Builds all documentation.">
     </target>
   
     <!-- Javadocs is an exception, but provide a docs-api to conform. -->
     <target name="docs-api" depends="docs-javadocs"/>
   
  -  <!-- 
  -     | Check if we need to build javadocs 
  +  <!--
  +     | Check if we need to build javadocs
        |
        | Javadocs will only be generated if one or more .java source files
        | is newer than the generated index.html.
  @@ -467,7 +468,7 @@
              targetfile="${build.api}/index.html">
         <srcfiles dir="${source.java}" includes="**/*.java"/>
       </uptodate>
  -  </target>        
  +  </target>
   
     <!-- Generate Javadoc if we are out of date -->
     <target name="docs-javadocs" depends="docs-javadocs-check" 
unless="docs-javadocs.disable">
  @@ -487,7 +488,7 @@
                private="${javadoc.private}"
                encoding="${javadoc.encoding}"
                use="${javadoc.use}"
  -          verbose="${javadoc.verbose}"> 
  +          verbose="${javadoc.verbose}">
         <group title="JDBC Extension" packages="javax.sql*"/>
         <group title="J2EE" packages="javax*"/>
       </javadoc>
  @@ -527,7 +528,7 @@
     <!-- Release                                                            -->
     <!-- ================================================================== -->
   
  -  <!-- 
  +  <!--
        | Builds a release distribution.
      -->
   
  @@ -570,7 +571,7 @@
        | Run all tests.
      -->
   
  -  <target name="tests" depends="init, tests-junit, tests-reports" 
  +  <target name="tests" depends="init, tests-junit, tests-reports"
          description="Execute all tests.">
     </target>
   
  @@ -581,9 +582,9 @@
     <target name="tests-junit" depends="jars">
       <mkdir dir="${build.reports}"/>
       <junit dir="${module.output}"
  -        printsummary="${junit.printsummary}" 
  -        haltonerror="${junit.haltonerror}" 
  -        haltonfailure="${junit.haltonfailure}" 
  +        printsummary="${junit.printsummary}"
  +        haltonerror="${junit.haltonerror}"
  +        haltonfailure="${junit.haltonfailure}"
           fork="${junit.fork}"
           timeout="${junit.timeout}"
           jvm="${junit.jvm}">
  @@ -599,8 +600,8 @@
                 usefile="${junit.formatter.usefile}"/>
   
         <batchtest todir="${build.reports}"
  -              haltonerror="${junit.batchtest.haltonerror}" 
  -              haltonfailure="${junit.batchtest.haltonfailure}" 
  +              haltonerror="${junit.batchtest.haltonerror}"
  +              haltonfailure="${junit.batchtest.haltonfailure}"
                 fork="${junit.batchtest.fork}">
   
           <fileset dir="${build.classes}">
  @@ -611,7 +612,7 @@
       </junit>
     </target>
   
  -  <target name="reports" depends="tests-reports" 
  +  <target name="reports" depends="tests-reports"
          description="Generates all reports."/>
   
     <target name="tests-reports" depends="tests-reports-html"/>
  @@ -684,7 +685,7 @@
   
     <target name="main" depends="most"
          description="Executes the default target (most)."/>
  -    
  +
     <target name="all" depends="jars, docs"
          description="Builds everything."/>
   
  
  
  

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

Reply via email to