You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@river.apache.org by si...@apache.org on 2010/11/24 10:16:42 UTC

svn commit: r1038534 - /incubator/river/jtsk/trunk/build.xml

Author: sijskes
Date: Wed Nov 24 09:16:37 2010
New Revision: 1038534

URL: http://svn.apache.org/viewvc?rev=1038534&view=rev
Log:
fixed html gen

Modified:
    incubator/river/jtsk/trunk/build.xml

Modified: incubator/river/jtsk/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/build.xml?rev=1038534&r1=1038533&r2=1038534&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/build.xml (original)
+++ incubator/river/jtsk/trunk/build.xml Wed Nov 24 09:16:37 2010
@@ -43,7 +43,7 @@
 
     <target name="hudson-ci" description="hudson build target" depends="diagnostics,all.clean,release,test,javadoc-internals" />
 
-    <target name="hudson-qa" description="hudson QA build target" depends="hudson-qa-settings,diagnostics,all.clean,qa.run" />
+    <target name="hudson-qa" description="hudson QA build target" depends="diagnostics,hudson-qa-settings,all.clean,qa.run" />
 
     <target name="hudson-qa-settings" description="provide default settings" >
         <property name="harness.generateHtml" value="true" />
@@ -2129,7 +2129,9 @@
     -->
     <target name="qa.run" depends="" description="Run QA tests">
         <!-- Call qa subcomponent build -->
-        <ant dir="qa" target="run" inheritall="false"/>
+        <ant dir="qa" target="run" inheritall="false">
+            <property name="harness.generateHtml" value="${harness.generateHtml}" />
+        </ant>
     </target>
 
     <target name="all.build" depends="river-runtime"