[Yanel-commits] rev 31134 - public/yanel/trunk/src/build

michi at wyona.com michi at wyona.com
Fri Feb 1 22:31:41 CET 2008


Author: michi
Date: 2008-02-01 22:31:41 +0100 (Fri, 01 Feb 2008)
New Revision: 31134

Modified:
   public/yanel/trunk/src/build/build.xml
Log:
dedicated javadoc classpath introduced

Modified: public/yanel/trunk/src/build/build.xml
===================================================================
--- public/yanel/trunk/src/build/build.xml	2008-02-01 21:09:52 UTC (rev 31133)
+++ public/yanel/trunk/src/build/build.xml	2008-02-01 21:31:41 UTC (rev 31134)
@@ -306,6 +306,20 @@
 <!--
     <echo>Classpath to run yanel: ${run.cp}</echo>
 -->
+
+    <path id="classpath.javadoc">
+      <!-- Properties files -->
+      <pathelement path="${yanel.home.dir}/build/webapps/${servlet.context.prefix}/WEB-INF/classes"/>
+
+      <!-- All from source generated libs -->
+      <fileset dir="${yanel.home.dir}/build/webapps/${servlet.context.prefix}/WEB-INF/lib">
+        <include name="*.jar"/>
+      </fileset>
+
+      <!-- All external dependencies -->
+      <pathelement path="${maven2.cp}"/>
+      <pathelement path="${maven2.compile.cp}"/>
+    </path>
   </target>
 
   <target name="compile-core" description="Compile Java classes of Yanel core" depends="init, set-classpath">
@@ -877,7 +891,7 @@
       packagenames="org.*"
       sourcepath="${yanel.home.dir}/src/core/java"
       destdir="${yanel.home.dir}/build/javadoc"
-      classpathref="classpath.run"
+      classpathref="classpath.javadoc"
     >
     </javadoc>
   </target>



More information about the Yanel-commits mailing list