You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2008/05/15 08:48:37 UTC

svn commit: r656518 - /hadoop/hbase/trunk/build.xml

Author: stack
Date: Wed May 14 23:48:37 2008
New Revision: 656518

URL: http://svn.apache.org/viewvc?rev=656518&view=rev
Log:
HBASE-593 build on hudson failing compiling jsp

Modified:
    hadoop/hbase/trunk/build.xml

Modified: hadoop/hbase/trunk/build.xml
URL: http://svn.apache.org/viewvc/hadoop/hbase/trunk/build.xml?rev=656518&r1=656517&r2=656518&view=diff
==============================================================================
--- hadoop/hbase/trunk/build.xml (original)
+++ hadoop/hbase/trunk/build.xml Wed May 14 23:48:37 2008
@@ -339,7 +339,11 @@
     <pathelement location="${build.dir}"/>
   </path>
 
-  <target name="compile-test" depends="compile" > 
+  <!--'compile-test' used to depend on 'compile' but removed it. Hudson doesn't like
+      redoing init and jscpc at this stage of the game; i.e. the prereqs
+      for compile.  TODO: Investigate why.  For now, test will fail
+      if not preceeded by manual 'jar' or 'compile' invokation -->
+  <target name="compile-test" > 
     <javac encoding="${build.encoding}" 
        srcdir="${src.test}" 
        includes="**/*.java" 
@@ -358,7 +362,7 @@
     </jar>
   </target>
 
-  <target name="test" depends="compile-test, compile" >
+  <target name="test" depends="compile-test" >
     <delete dir="${test.log.dir}"/>
     <mkdir dir="${test.log.dir}"/>
     <junit