Author: lewismc
Date: Wed Oct 1 17:57:19 2014
New Revision: 1628788
URL: http://svn.apache.org/r1628788
Log:
NUTCH-1866 ant ecliupse target should not delete runtime
Modified:
nutch/branches/2.x/CHANGES.txt
nutch/branches/2.x/build.xml
Modified: nutch/branches/2.x/CHANGES.txt
URL:
http://svn.apache.org/viewvc/nutch/branches/2.x/CHANGES.txt?rev=1628788&r1=1628787&r2=1628788&view=diff
==============================================================================
--- nutch/branches/2.x/CHANGES.txt (original)
+++ nutch/branches/2.x/CHANGES.txt Wed Oct 1 17:57:19 2014
@@ -1,6 +1,8 @@
Nutch Change Log
-Current Development
+Current Development 2.3-SNAPSHOT
+
+* NUTCH-1866 ant eclipse target should not delete runtime (nimafl via lewismc)
* NUTCH-1859 Make Nutch webapp port configurable (Nima Falaki via lewismc)
Modified: nutch/branches/2.x/build.xml
URL:
http://svn.apache.org/viewvc/nutch/branches/2.x/build.xml?rev=1628788&r1=1628787&r2=1628788&view=diff
==============================================================================
--- nutch/branches/2.x/build.xml (original)
+++ nutch/branches/2.x/build.xml Wed Oct 1 17:57:19 2014
@@ -822,6 +822,9 @@
<!-- target: clean =================================================== -->
<target name="clean" depends="clean-build, clean-lib, clean-dist,
clean-runtime" description="--> clean the project" />
+ <!-- target: clean-eclipse ============================================ -->
+ <target name="clean-eclipse" depends="clean-build, clean-lib, clean-dist"
description="--> cleans the eclipse project"/>
+
<!-- target: clean-local ============================================= -->
<target name="clean-local" depends="" description="--> cleans the local
repository for the current module">
<delete dir="${ivy.local.default.root}/${ivy.organisation}/${ivy.module}" />
@@ -931,13 +934,13 @@
<!-- target: eclipse ================================================ -->
<target name="eclipse"
- depends="clean,init,job,ant-eclipse-download"
+ depends="clean-eclipse,init,resolve-test,job,ant-eclipse-download"
description="--> Create eclipse project files">
- <pathconvert property="eclipse.project">
- <path path="${basedir}"/>
- <regexpmapper from="^.*/([^/]+)$$" to="\1" handledirsep="yes"/>
- </pathconvert>
+ <pathconvert property="eclipse.project">
+ <path path="${basedir}"/>
+ <regexpmapper from="^.*/([^/]+)$$" to="\1" handledirsep="yes"/>
+ </pathconvert>
<taskdef name="eclipse"
classname="prantl.ant.eclipse.EclipseTask"