|
From: Johannes M. <j_m...@us...> - 2004-04-03 10:58:40
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6719 Modified Files: build.xml Log Message: added xindice target Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- build.xml 24 Feb 2004 12:47:10 -0000 1.8 +++ build.xml 3 Apr 2004 10:46:23 -0000 1.9 @@ -385,7 +385,7 @@ <!-- copy other web applications to webapps directory --> <antcall target="copyjetspeed"/> - + <antcall target="copyxindice"/> </target> <target name="copyjetspeed" if="jetspeed.home"> @@ -394,6 +394,12 @@ </copy> </target> +<target name="copyxindice" if="xindice_tomcat.home"> + <mkdir dir="${build.home}/webapps/xindice"/> + <copy todir="${build.home}/webapps/xindice"> + <fileset dir="${xindice-tomcat.home}" includes="**/*"/> + </copy> +</target> <!-- ==================== Start Targets ================================= --> <target name="start" depends="compile,prepare"> |