Author: lewismc
Date: Wed Apr 23 15:22:46 2014
New Revision: 1589436
URL: http://svn.apache.org/r1589436
Log:
NUTCH-1700 Remove deprecated code in src/plugin/creativecommons/build.xml
Removed:
nutch/branches/2.x/src/plugin/creativecommons/src/web/
Modified:
nutch/branches/2.x/CHANGES.txt
nutch/branches/2.x/src/plugin/creativecommons/build.xml
Modified: nutch/branches/2.x/CHANGES.txt
URL:
http://svn.apache.org/viewvc/nutch/branches/2.x/CHANGES.txt?rev=1589436&r1=1589435&r2=1589436&view=diff
==============================================================================
--- nutch/branches/2.x/CHANGES.txt (original)
+++ nutch/branches/2.x/CHANGES.txt Wed Apr 23 15:22:46 2014
@@ -2,6 +2,8 @@ Nutch Change Log
Current Development
+* NUTCH-1700 Remove deprecated code in src/plugin/creativecommons/build.xml
(lewismc)
+
* NUTCH-1761 Crawl script fails to find job file if not started from inside
bin dir (David Hosking, jnioche)
* NUTCH-1603 ZIP parser complains about truncated PDF file (snagel via lewismc)
Modified: nutch/branches/2.x/src/plugin/creativecommons/build.xml
URL:
http://svn.apache.org/viewvc/nutch/branches/2.x/src/plugin/creativecommons/build.xml?rev=1589436&r1=1589435&r2=1589436&view=diff
==============================================================================
--- nutch/branches/2.x/src/plugin/creativecommons/build.xml (original)
+++ nutch/branches/2.x/src/plugin/creativecommons/build.xml Wed Apr 23 15:22:46
2014
@@ -25,38 +25,4 @@
<!-- <ant target="deploy" inheritall="false" dir="../parse-html"/> -->
</target>
-
- <property name="this.web" location="${root}/src/web"/>
- <property name="nutch.web" location="${nutch.root}/src/web"/>
-
- <!-- Make creativecommons.war -->
- <target name="war">
- <war destfile="${build.dir}/${name}.war"
- webxml="${this.web}/web.xml">
- <fileset dir="${nutch.web}/jsp" excludes="**/search.jsp"/>
- <fileset dir="${nutch.root}/docs">
- <include name="img/*.gif"/>
- </fileset>
- <fileset dir="${this.web}" includes="search.jsp"/>
- <classes dir="${nutch.root}/conf" excludes="**/*.template"/>
- <classes dir="${root}/conf"/>
- <classes dir="${nutch.web}/locale"/>
- <zipfileset dir="${this.web}" includes="include/*.html"/>
- <lib dir="${nutch.root}/lib">
- <include name="lucene*.jar"/>
- <include name="taglibs-*.jar"/>
- <include name="dom4j-*.jar"/>
- </lib>
- <lib dir="${nutch.root}/build">
- <include name="nutch-*.jar"/>
- </lib>
- <zipfileset prefix="WEB-INF/classes/plugins"
- dir="${nutch.root}/build/plugins"/>
- <webinf dir="${nutch.root}/lib">
- <include name="taglibs-*.tld"/>
- </webinf>
- </war>
- </target>
-
-
</project>