You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by eh...@apache.org on 2006/09/13 16:33:28 UTC

svn commit: r442993 - /incubator/solr/trunk/build.xml

Author: ehatcher
Date: Wed Sep 13 07:33:28 2006
New Revision: 442993

URL: http://svn.apache.org/viewvc?view=rev&rev=442993
Log:
Add description to javadoc and test-reports targets, and add more output to <junit>

Modified:
    incubator/solr/trunk/build.xml

Modified: incubator/solr/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/build.xml?view=diff&rev=442993&r1=442992&r2=442993
==============================================================================
--- incubator/solr/trunk/build.xml (original)
+++ incubator/solr/trunk/build.xml Wed Sep 13 07:33:28 2006
@@ -91,7 +91,8 @@
   </target>
 
 
-  <target name="javadoc" depends="compile">
+  <target name="javadoc" depends="compile"
+          description="Generates javadoc documentation.">
 
     <mkdir dir="${build.javadoc}"/>
         
@@ -191,7 +192,7 @@
          conf file, either way we need a specific run directory for
          the tests.
       -->    
-    <junit printsummary="on"
+    <junit printsummary="withOutAndErr"
            haltonfailure="no"
            errorProperty="tests.failed"
            failureProperty="tests.failed"
@@ -213,8 +214,8 @@
     <fail if="tests.failed">Tests failed!</fail>
   </target>
   
-  <target name="test-reports">
-    <!-- no description so it doesn't show up in -projecthelp ... yet -->  
+  <target name="test-reports"
+          description="Generates HTML test reports.">
     <mkdir dir="${junit.reports}"/>
     <junitreport todir="${junit.output.dir}">
       <fileset dir="${junit.output.dir}">