From: <jbo...@li...> - 2005-10-14 06:14:58
|
Author: aron.gombas Date: 2005-10-14 02:14:52 -0400 (Fri, 14 Oct 2005) New Revision: 1383 Modified: trunk/labs/kosmos/build-distro.xml Log: Javadocs warnings resolved Modified: trunk/labs/kosmos/build-distro.xml =================================================================== --- trunk/labs/kosmos/build-distro.xml 2005-10-13 19:16:41 UTC (rev 1382) +++ trunk/labs/kosmos/build-distro.xml 2005-10-14 06:14:52 UTC (rev 1383) @@ -37,10 +37,10 @@ <!-- targets --> <target name="init"> - <echo message="============================================================"/> - <echo message="${project.name} distribution - ${project.version}"/> - <echo message="Copyright 2005 (C) Midori"/> - <echo message="============================================================"/> + <echo message="============================================================"/> + <echo message="${project.name} distribution - ${project.version}"/> + <echo message="Copyright 2005 (C) Midori"/> + <echo message="============================================================"/> </target> <target name="clean" depends="init" description="Cleans up temporary files created during previous builds"> @@ -50,7 +50,7 @@ <target name="dist" depends="init,dist-bin,dist-src" description="Prepares all distributables"/> <target name="dist-bin" depends="init,clean" description="Prepares all binary distributables"><!-- ,manual-html,manual-pdf --> - <!-- prepare subprojects --> + <!-- prepare subprojects --> <ant antfile="build-portlet.xml" target="dist-bin" inheritall="false"/> <ant antfile="build-server.xml" target="dist-bin" inheritall="false"/> @@ -99,6 +99,9 @@ <fileset dir="${src.dir}" defaultexcludes="yes"> <include name="java/hu/midori/kosmos/**"/> </fileset> + <classpath> + <fileset dir="." includes="web-**/WEB-INF/lib/*.jar"/> + </classpath> </javadoc> </target> |