[jboss-cvs] JBossRemoting ...

Ron Sigal ron_sigal at yahoo.com
Mon Nov 26 23:58:11 EST 2007


  User: rsigal  
  Date: 07/11/26 23:58:11

  Modified:    JBossRemoting  Tag: remoting_2_2_0_GA build.xml
  Log:
  JBREM-855:  Added properties compile.source and compile.target.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.88.2.13.2.13 +8 -1      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.13.2.12
  retrieving revision 1.88.2.13.2.13
  diff -u -b -r1.88.2.13.2.12 -r1.88.2.13.2.13
  --- build.xml	9 Oct 2007 22:35:28 -0000	1.88.2.13.2.12
  +++ build.xml	27 Nov 2007 04:58:11 -0000	1.88.2.13.2.13
  @@ -9,7 +9,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.88.2.13.2.12 2007/10/09 22:35:28 rsigal Exp $ -->
  +<!-- $Id: build.xml,v 1.88.2.13.2.13 2007/11/27 04:58:11 rsigal Exp $ -->
   
   <project default="most" name="JBossRemoting">
   
  @@ -25,6 +25,9 @@
        <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">
   
  @@ -143,6 +146,8 @@
   
         <!-- java source compile -->
         <javac destdir="${compile.dir}"
  +             target="${compile.target}"
  +             source="${compile.source}"
                debug="on"
                deprecation="on"
                optimize="off"
  @@ -227,6 +232,8 @@
   
         <!-- java source compile -->
         <javac destdir="${tests.compile.dir}"
  +             target="${compile.target}"
  +             source="${compile.source}"
                debug="on"
                deprecation="on"
                optimize="off"
  
  
  



More information about the jboss-cvs-commits mailing list