You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by rh...@apache.org on 2007/10/29 14:34:30 UTC

svn commit: r589624 - /db/derby/code/trunk/build.xml

Author: rhillegas
Date: Mon Oct 29 06:34:29 2007
New Revision: 589624

URL: http://svn.apache.org/viewvc?rev=589624&view=rev
Log:
DERBY-3117: Move compiler-level check to buildsource target so that junit tests will continue to run under the ant harness on jdk1.4 and j2me.

Modified:
    db/derby/code/trunk/build.xml

Modified: db/derby/code/trunk/build.xml
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/build.xml?rev=589624&r1=589623&r2=589624&view=diff
==============================================================================
--- db/derby/code/trunk/build.xml (original)
+++ db/derby/code/trunk/build.xml Mon Oct 29 06:34:29 2007
@@ -37,7 +37,7 @@
 
 <!-- Targets -->
 
-  <target name="buildsource" depends="init,engine,storeless,tools,drda,client,build,versioninfo,localeinfo"/>
+  <target name="buildsource" depends="checkCompilerLevel,init,engine,storeless,tools,drda,client,build,versioninfo,localeinfo"/>
   <target name="all" depends="buildsource,demo,testing"/>
 
 <!-- ==================================================================== -->
@@ -45,8 +45,6 @@
 <!-- ==================================================================== -->
 
   <target name="init" unless="init.done">
-
-    <antcall target="checkCompilerLevel"/>
 
     <tstamp/>
     <mkdir dir="${out.dir}"/>