[jboss-cvs] JBossRemoting ...

Ron Sigal ron_sigal at yahoo.com
Mon Nov 26 23:43:57 EST 2007


  User: rsigal  
  Date: 07/11/26 23:43:57

  Modified:    JBossRemoting  Tag: remoting_2_x build.xml
  Log:
  JBREM-855:  Added properties compile.source and compile.target.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.88.2.27 +9 -2      JBossRemoting/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/build.xml,v
  retrieving revision 1.88.2.26
  retrieving revision 1.88.2.27
  diff -u -b -r1.88.2.26 -r1.88.2.27
  --- build.xml	21 Nov 2007 22:18:33 -0000	1.88.2.26
  +++ build.xml	27 Nov 2007 04:43:57 -0000	1.88.2.27
  @@ -9,7 +9,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.88.2.26 2007/11/21 22:18:33 rsigal Exp $ -->
  +<!-- $Id: build.xml,v 1.88.2.27 2007/11/27 04:43:57 rsigal Exp $ -->
   
   <project default="most" name="JBossRemoting">
   
  @@ -25,6 +25,10 @@
        <os family = "windows" />
      </condition>
   
  +   <!-- used by "compile" and "tests.compile"/-->
  +   <property name="compile.source" value="${ant.java.version}"/>
  +   <property name="compile.target" value="${ant.java.version}"/>
  +		
   
      <target name="configure" depends="get-jvm" unless="configure.disable">
   
  @@ -168,6 +172,8 @@
   
         <!-- java source compile -->
         <javac destdir="${compile.dir}"
  +             target="${compile.target}"
  +             source="${compile.source}"
                debug="on"
                deprecation="on"
                optimize="off"
  @@ -252,6 +258,8 @@
   
         <!-- java source compile -->
         <javac destdir="${tests.compile.dir}"
  +             target="${compile.target}"
  +             source="${compile.source}"
                debug="on"
                deprecation="on"
                optimize="off"
  @@ -871,7 +879,6 @@
            <batchtest fork="yes" todir="${output.tests.results}"
                       haltonfailure="no">
               <fileset dir="${tests.compile.dir}">
  -               <!--include name="**/remoting/transport/http/**/*TestCase.class"/-->
                  <include name="**/remoting/**/http/**/*TestCase.class"/>
              	   <include name="**/remoting/**/*HTTP*TestCase.class"/>
                  <include name="**/remoting/**/*Http*TestCase.class"/>
  
  
  



More information about the jboss-cvs-commits mailing list