Revision: 17386
          http://sourceforge.net/p/gate/code/17386
Author:   markagreenwood
Date:     2014-02-21 19:24:31 +0000 (Fri, 21 Feb 2014)
Log Message:
-----------
given that we require Java 6, it seems odd that the main build file had source 
and target set to 1.5

Modified Paths:
--------------
    gate/trunk/build.xml

Modified: gate/trunk/build.xml
===================================================================
--- gate/trunk/build.xml        2014-02-21 15:50:50 UTC (rev 17385)
+++ gate/trunk/build.xml        2014-02-21 19:24:31 UTC (rev 17386)
@@ -250,7 +250,7 @@
        <!-- This target compiles all the classes -->
        <target name="compile" depends="prepare, depend, svg2java" 
description="compile the source ">
                <!-- Compile the java code from ${srcDir} into ${buildDir} -->
-               <javac srcdir="${srcDir}" destdir="${outputDir}" source="1.5" 
target="1.5" encoding="UTF-8" debug="true" deprecation="${deprecation}" 
debuglevel="lines,source" includes="gate/**,com/**,hepple/**" 
classpathref="build.class.path">
+               <javac srcdir="${srcDir}" destdir="${outputDir}" source="1.6" 
target="1.6" encoding="UTF-8" debug="true" deprecation="${deprecation}" 
debuglevel="lines,source" includes="gate/**,com/**,hepple/**" 
classpathref="build.class.path">
                        <compilerarg value="-Xmaxwarns" />
                        <compilerarg value="${gate.compile.maxwarnings}" />
                </javac>
@@ -259,7 +259,7 @@
        <!-- This target compiles all the classes including debug information 
-->
        <target name="compile_debug" depends="prepare, depend" 
description="compile the source ">
                <!-- Compile the java code from ${srcDir} into ${buildDir} -->
-               <javac srcdir="${srcDir}" destdir="${outputDir}" 
encoding="UTF-8" source="1.5" target="1.5" debug="true" 
deprecation="${deprecation}" includes="gate/**,com/**,hepple/**" 
classpathref="build.class.path" />
+               <javac srcdir="${srcDir}" destdir="${outputDir}" 
encoding="UTF-8" source="1.6" target="1.6" debug="true" 
deprecation="${deprecation}" includes="gate/**,com/**,hepple/**" 
classpathref="build.class.path" />
        </target>
 
 

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121054471&iu=/4140/ostg.clktrk
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to