[jboss-cvs] JBossRemoting ...

Ron Sigal ron_sigal at yahoo.com
Mon Nov 26 23:51:13 EST 2007


  User: rsigal  
  Date: 07/11/26 23:51:13

  Modified:    JBossRemoting  Tag: remoting_2_2_2_GA_CP build.xml
  Log:
  JBREM-855:  Added properties compile.source and compile.target.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.88.2.13.2.9.2.3 +9 -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.9.2.2
  retrieving revision 1.88.2.13.2.9.2.3
  diff -u -b -r1.88.2.13.2.9.2.2 -r1.88.2.13.2.9.2.3
  --- build.xml	27 Nov 2007 04:46:54 -0000	1.88.2.13.2.9.2.2
  +++ build.xml	27 Nov 2007 04:51:12 -0000	1.88.2.13.2.9.2.3
  @@ -9,7 +9,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.88.2.13.2.9.2.2 2007/11/27 04:46:54 rsigal Exp $ -->
  +<!-- $Id: build.xml,v 1.88.2.13.2.9.2.3 2007/11/27 04:51:12 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">
   
  @@ -143,6 +147,8 @@
   
         <!-- java source compile -->
         <javac destdir="${compile.dir}"
  +             target="${compile.target}"
  +             source="${compile.source}"
                debug="on"
                deprecation="on"
                optimize="off"
  @@ -227,6 +233,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