From: <bi...@us...> - 2008-10-11 01:46:06
|
Revision: 2604 http://archive-access.svn.sourceforge.net/archive-access/?rev=2604&view=rev Author: binzino Date: 2008-10-11 01:45:56 +0000 (Sat, 11 Oct 2008) Log Message: ----------- Moved NutchWAX-specific part of "package" rule to "onlypack" so it can be run w/o triggering all the dependencies. Modified Paths: -------------- trunk/archive-access/projects/nutchwax/archive/build.xml Modified: trunk/archive-access/projects/nutchwax/archive/build.xml =================================================================== --- trunk/archive-access/projects/nutchwax/archive/build.xml 2008-10-11 01:45:00 UTC (rev 2603) +++ trunk/archive-access/projects/nutchwax/archive/build.xml 2008-10-11 01:45:56 UTC (rev 2604) @@ -107,9 +107,12 @@ and let the individual user decide whether or not to incorporate our modifications. --> - <target name="package" depends="jar, job, war, javadoc"> + <target name="package" depends="jar, job, war, javadoc" > <ant dir="${nutch.dir}" target="package" inheritAll="false" /> + <ant target="onlypack" /> + </target> + <target name="onlypack"> <copy todir="${dist.dir}/lib" includeEmptyDirs="false"> <fileset dir="lib"/> </copy> @@ -133,6 +136,11 @@ </fileset> </copy> + <mkdir dir="${dist.dir}/contrib/archive/web"/> + <copy todir="${dist.dir}/contrib/archive/web"> + <fileset dir="src/web" /> + </copy> + </target> </project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |