You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@river.apache.org by jc...@apache.org on 2010/09/20 21:15:49 UTC

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

Author: jcosters
Date: Mon Sep 20 19:15:48 2010
New Revision: 999064

URL: http://svn.apache.org/viewvc?rev=999064&view=rev
Log:
RIVER-351: fix error messages on asm packages not being found while generating javadoc

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=999064&r1=999063&r2=999064&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/build.xml (original)
+++ incubator/river/jtsk/trunk/build.xml Mon Sep 20 19:15:48 2010
@@ -47,7 +47,10 @@
     <property name="javadoc.spec.doc-title" value="${product.title} Specification-only API Documentation"/>
     <property name="javadoc.spec.win-title" value="${javadoc.spec.doc-title}"/>
 
-    <path id="javadoc.classpath" refid="river.classes"/>
+    <path id="javadoc.classpath">
+        <path refid="river.classes"/>
+        <path refid="asm.jars"/>
+    </path>
 
     <target name="copy-resources"
 		description="Copies various resources directories to the classes dir."