Author: piergiorgio
Date: Thu Jan 18 09:20:10 2024
New Revision: 1915308
URL: http://svn.apache.org/viewvc?rev=1915308&view=rev
Log:
fix for ant make-core-deps command (CONNECTORS-1753)
Modified:
manifoldcf/trunk/CHANGES.txt
manifoldcf/trunk/build.xml
Modified: manifoldcf/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/CHANGES.txt?rev=1915308&r1=1915307&r2=1915308&view=diff
==============================================================================
--- manifoldcf/trunk/CHANGES.txt (original)
+++ manifoldcf/trunk/CHANGES.txt Thu Jan 18 09:20:10 2024
@@ -3,6 +3,9 @@ $Id$
======================= 2.27-dev =====================
+CONNECTORS-1753: ant make-core-deps fails
+(Guylaine Bassett)
+
CONNECTORS-1751: HDFS Connector - Maven build issue
(Piergiorgio Lucidi)
@@ -16,7 +19,7 @@ existing CSV support in the JDBC connect
(Guylaine Bassett)
pr-149: Add Webconnector feature:
-The "Force the inclusion of redirectionâ options allows you to include hosts
redirected from original seeds. You might want to use this option if the site
you are crawling is subject to redirections. Note that it is not required if
the previous option is not checked. Here are the possible behaviors:
+The "Force the inclusion of redirectionâ options allows you to include hosts
redirected from original seeds. You might want to use this option if the site
yofmu are crawling is subject to redirections. Note that it is not required if
the previous option is not checked. Here are the possible behaviors:
- If the user checks the âInclude only hostsâ, but not the âForce the
inclusionâ option, then the redirected files will be filtered if their new
URL doesnât match the seed.
- If the user checks the Include only hosts, and checks the Force the
inclusion option, then when the job finds a url that is not in the same domain,
it is dropped EXCEPT if the url is originated by a 301 or 302 redirection in
the document queue.
Modified: manifoldcf/trunk/build.xml
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/build.xml?rev=1915308&r1=1915307&r2=1915308&view=diff
==============================================================================
--- manifoldcf/trunk/build.xml (original)
+++ manifoldcf/trunk/build.xml Thu Jan 18 09:20:10 2024
@@ -2180,13 +2180,13 @@ Use Apache Forrest version forrest-0.9-d
<!-- Download and unpack binary artifact -->
<mkdir dir="build/download"/>
<mkdir dir="lib/elasticsearch"/>
- <get
src="https://www.apache.org/dist/manifoldcf/apache-manifoldcf-elasticsearch-plugin-2.1/apache-manifoldcf-elasticsearch-plugin-2.1-bin.zip"
dest="build/download/apache-manifoldcf-elasticsearch-plugin-bin.zip"/>
+ <get
src="https://downloads.apache.org/manifoldcf/apache-manifoldcf-elasticsearch-plugin-2.1/apache-manifoldcf-elasticsearch-plugin-2.1-bin.zip"
dest="build/download/apache-manifoldcf-elasticsearch-plugin-bin.zip"/>
<unzip
src="build/download/apache-manifoldcf-elasticsearch-plugin-bin.zip"
dest="build/download/apache-manifoldcf-elasticsearch-plugin-bin"/>
<copy todir="lib/elasticsearch">
<fileset
dir="build/download/apache-manifoldcf-elasticsearch-plugin-bin/elasticsearch-plugin-mcf-2.1"/>
</copy>
<mkdir dir="lib/elasticsearch-1.5"/>
- <get
src="https://www.apache.org/dist/manifoldcf/apache-manifoldcf-elasticsearch-1.5-plugin-2.0.2/apache-manifoldcf-elasticsearch-1.5-plugin-2.0.2-bin.zip"
dest="build/download/apache-manifoldcf-elasticsearch-1.5-plugin-bin.zip"/>
+ <get
src="https://downloads.apache.org/manifoldcf/apache-manifoldcf-elasticsearch-1.5-plugin-2.0.2/apache-manifoldcf-elasticsearch-1.5-plugin-2.0.2-bin.zip"
dest="build/download/apache-manifoldcf-elasticsearch-1.5-plugin-bin.zip"/>
<unzip
src="build/download/apache-manifoldcf-elasticsearch-1.5-plugin-bin.zip"
dest="build/download/apache-manifoldcf-elasticsearch-1.5-plugin-bin"/>
<copy todir="lib/elasticsearch-1.5">
<fileset
dir="build/download/apache-manifoldcf-elasticsearch-1.5-plugin-bin/elasticsearch-1.5-plugin-mcf-2.0.2"/>
@@ -2315,7 +2315,7 @@ Use Apache Forrest version forrest-0.9-d
<mkdir dir="lib/sharepoint-2007"/>
<!-- Download and unpack binary artifact -->
<mkdir dir="build/download"/>
- <get
src="https://www.apache.org/dist/manifoldcf/apache-manifoldcf-sharepoint-2007-plugin-0.5/apache-manifoldcf-sharepoint-2007-plugin-0.5-bin.zip"
dest="build/download/apache-manifoldcf-sharepoint-2007-plugin-bin.zip"/>
+ <get
src="https://downloads.apache.org/manifoldcf/apache-manifoldcf-sharepoint-2007-plugin-0.5/apache-manifoldcf-sharepoint-2007-plugin-0.5-bin.zip"
dest="build/download/apache-manifoldcf-sharepoint-2007-plugin-bin.zip"/>
<unzip
src="build/download/apache-manifoldcf-sharepoint-2007-plugin-bin.zip"
dest="build/download/apache-manifoldcf-sharepoint-2007-plugin-bin"/>
<copy todir="lib/sharepoint-2007">
<fileset
dir="build/download/apache-manifoldcf-sharepoint-2007-plugin-bin/apache-manifoldcf-sharepoint-2007-plugin-0.5"/>
@@ -2323,7 +2323,7 @@ Use Apache Forrest version forrest-0.9-d
<mkdir dir="lib/sharepoint-2010"/>
<!-- Download and unpack binary artifact -->
<mkdir dir="build/download"/>
- <get
src="https://www.apache.org/dist/manifoldcf/apache-manifoldcf-sharepoint-2010-plugin-0.4/apache-manifoldcf-sharepoint-2010-plugin-0.4-bin.zip"
dest="build/download/apache-manifoldcf-sharepoint-2010-plugin-bin.zip"/>
+ <get
src="https://downloads.apache.org/manifoldcf/apache-manifoldcf-sharepoint-2010-plugin-0.4/apache-manifoldcf-sharepoint-2010-plugin-0.4-bin.zip"
dest="build/download/apache-manifoldcf-sharepoint-2010-plugin-bin.zip"/>
<unzip
src="build/download/apache-manifoldcf-sharepoint-2010-plugin-bin.zip"
dest="build/download/apache-manifoldcf-sharepoint-2010-plugin-bin"/>
<copy todir="lib/sharepoint-2010">
<fileset
dir="build/download/apache-manifoldcf-sharepoint-2010-plugin-bin/apache-manifoldcf-sharepoint-2010-plugin-0.4"/>
@@ -2331,7 +2331,7 @@ Use Apache Forrest version forrest-0.9-d
<mkdir dir="lib/sharepoint-2013"/>
<!-- Download and unpack binary artifact -->
<mkdir dir="build/download"/>
- <get
src="https://www.apache.org/dist/manifoldcf/apache-manifoldcf-sharepoint-2013-plugin-0.1/apache-manifoldcf-sharepoint-2013-plugin-0.1-bin.zip"
dest="build/download/apache-manifoldcf-sharepoint-2013-plugin-bin.zip"/>
+ <get
src="https://downloads.apache.org/manifoldcf/apache-manifoldcf-sharepoint-2013-plugin-0.1/apache-manifoldcf-sharepoint-2013-plugin-0.1-bin.zip"
dest="build/download/apache-manifoldcf-sharepoint-2013-plugin-bin.zip"/>
<unzip
src="build/download/apache-manifoldcf-sharepoint-2013-plugin-bin.zip"
dest="build/download/apache-manifoldcf-sharepoint-2013-plugin-bin"/>
<copy todir="lib/sharepoint-2013">
<fileset
dir="build/download/apache-manifoldcf-sharepoint-2013-plugin-bin/apache-manifoldcf-sharepoint-2013-plugin-0.1"/>
@@ -2339,7 +2339,7 @@ Use Apache Forrest version forrest-0.9-d
<mkdir dir="lib/sharepoint-2016"/>
<!-- Download and unpack binary artifact -->
<mkdir dir="build/download"/>
- <get
src="https://www.apache.org/dist/manifoldcf/apache-manifoldcf-sharepoint-2016-plugin-0.1/apache-manifoldcf-sharepoint-2016-plugin-0.1-bin.zip"
dest="build/download/apache-manifoldcf-sharepoint-2016-plugin-bin.zip"/>
+ <get
src="https://downloads.apache.org/manifoldcf/apache-manifoldcf-sharepoint-2016-plugin-0.1/apache-manifoldcf-sharepoint-2016-plugin-0.1-bin.zip"
dest="build/download/apache-manifoldcf-sharepoint-2016-plugin-bin.zip"/>
<unzip
src="build/download/apache-manifoldcf-sharepoint-2016-plugin-bin.zip"
dest="build/download/apache-manifoldcf-sharepoint-2016-plugin-bin"/>
<copy todir="lib/sharepoint-2016">
<fileset
dir="build/download/apache-manifoldcf-sharepoint-2016-plugin-bin/apache-manifoldcf-sharepoint-2016-plugin-0.1"/>
@@ -2349,38 +2349,38 @@ Use Apache Forrest version forrest-0.9-d
<target name="download-solr-plugins">
<mkdir dir="lib/solr-3.x"/>
<mkdir dir="build/download"/>
- <get
src="https://www.apache.org/dist/manifoldcf/apache-manifoldcf-solr-3.x-plugin-2.2/apache-manifoldcf-solr-3.x-plugin-2.2-bin.zip"
dest="build/download/apache-manifoldcf-solr-3.x-plugin-bin.zip"/>
+ <get
src="https://downloads.apache.org/manifoldcf/apache-manifoldcf-solr-3.x-plugin-2.2/apache-manifoldcf-solr-3.x-plugin-2.2-bin.zip"
dest="build/download/apache-manifoldcf-solr-3.x-plugin-bin.zip"/>
<unzip src="build/download/apache-manifoldcf-solr-3.x-plugin-bin.zip"
dest="build/download/apache-manifoldcf-solr-3.x-plugin-bin"/>
<copy todir="lib/solr-3.x">
<fileset
dir="build/download/apache-manifoldcf-solr-3.x-plugin-bin/apache-manifoldcf-solr-3.x-plugin-2.2"/>
</copy>
<mkdir dir="lib/solr-4.x"/>
- <get
src="https://www.apache.org/dist/manifoldcf/apache-manifoldcf-solr-4.x-plugin-2.2/apache-manifoldcf-solr-4.x-plugin-2.2-bin.zip"
dest="build/download/apache-manifoldcf-solr-4.x-plugin-bin.zip"/>
+ <get
src="https://downloads.apache.org/manifoldcf/apache-manifoldcf-solr-4.x-plugin-2.2/apache-manifoldcf-solr-4.x-plugin-2.2-bin.zip"
dest="build/download/apache-manifoldcf-solr-4.x-plugin-bin.zip"/>
<unzip src="build/download/apache-manifoldcf-solr-4.x-plugin-bin.zip"
dest="build/download/apache-manifoldcf-solr-4.x-plugin-bin"/>
<copy todir="lib/solr-4.x">
<fileset
dir="build/download/apache-manifoldcf-solr-4.x-plugin-bin/apache-manifoldcf-solr-4.x-plugin-2.2"/>
</copy>
- <get
src="https://www.apache.org/dist/manifoldcf/apache-manifoldcf-solr-5.x-plugin-2.2/apache-manifoldcf-solr-5.x-plugin-2.2-bin.zip"
dest="build/download/apache-manifoldcf-solr-5.x-plugin-bin.zip"/>
+ <get
src="https://downloads.apache.org/manifoldcf/apache-manifoldcf-solr-5.x-plugin-2.2/apache-manifoldcf-solr-5.x-plugin-2.2-bin.zip"
dest="build/download/apache-manifoldcf-solr-5.x-plugin-bin.zip"/>
<unzip src="build/download/apache-manifoldcf-solr-5.x-plugin-bin.zip"
dest="build/download/apache-manifoldcf-solr-5.x-plugin-bin"/>
<copy todir="lib/solr-5.x">
<fileset
dir="build/download/apache-manifoldcf-solr-5.x-plugin-bin/apache-manifoldcf-solr-5.x-plugin-2.2"/>
</copy>
- <get
src="https://www.apache.org/dist/manifoldcf/apache-manifoldcf-solr-6.x-plugin-2.2/apache-manifoldcf-solr-6.x-plugin-2.2-bin.zip"
dest="build/download/apache-manifoldcf-solr-6.x-plugin-bin.zip"/>
+ <get
src="https://downloads.apache.org/manifoldcf/apache-manifoldcf-solr-6.x-plugin-2.2/apache-manifoldcf-solr-6.x-plugin-2.2-bin.zip"
dest="build/download/apache-manifoldcf-solr-6.x-plugin-bin.zip"/>
<unzip src="build/download/apache-manifoldcf-solr-6.x-plugin-bin.zip"
dest="build/download/apache-manifoldcf-solr-6.x-plugin-bin"/>
<copy todir="lib/solr-6.x">
<fileset
dir="build/download/apache-manifoldcf-solr-6.x-plugin-bin/apache-manifoldcf-solr-6.x-plugin-2.2"/>
</copy>
- <get
src="https://www.apache.org/dist/manifoldcf/apache-manifoldcf-solr-7.x-plugin-2.2.1/apache-manifoldcf-solr-7.x-plugin-2.2.1-bin.zip"
dest="build/download/apache-manifoldcf-solr-7.x-plugin-bin.zip"/>
+ <get
src="https://downloads.apache.org/manifoldcf/apache-manifoldcf-solr-7.x-plugin-2.2.1/apache-manifoldcf-solr-7.x-plugin-2.2.1-bin.zip"
dest="build/download/apache-manifoldcf-solr-7.x-plugin-bin.zip"/>
<unzip src="build/download/apache-manifoldcf-solr-7.x-plugin-bin.zip"
dest="build/download/apache-manifoldcf-solr-7.x-plugin-bin"/>
<copy todir="lib/solr-7.x">
<fileset
dir="build/download/apache-manifoldcf-solr-7.x-plugin-bin/apache-manifoldcf-solr-7.x-plugin-2.2.1"/>
</copy>
- <get
src="https://www.apache.org/dist/manifoldcf/apache-manifoldcf-solr-8.x-plugin-2.2/apache-manifoldcf-solr-8.x-plugin-2.2-bin.zip"
dest="build/download/apache-manifoldcf-solr-8.x-plugin-bin.zip"/>
+ <get
src="https://downloads.apache.org/manifoldcf/apache-manifoldcf-solr-8.x-plugin-2.2/apache-manifoldcf-solr-8.x-plugin-2.2-bin.zip"
dest="build/download/apache-manifoldcf-solr-8.x-plugin-bin.zip"/>
<unzip src="build/download/apache-manifoldcf-solr-8.x-plugin-bin.zip"
dest="build/download/apache-manifoldcf-solr-8.x-plugin-bin"/>
<copy todir="lib/solr-8.x">
<fileset
dir="build/download/apache-manifoldcf-solr-8.x-plugin-bin/apache-manifoldcf-solr-8.x-plugin-2.2"/>
</copy>
- <get
src="https://www.apache.org/dist/manifoldcf/apache-manifoldcf-solr-9.x-plugin-2.2/apache-manifoldcf-solr-9.x-plugin-2.2-bin.zip"
dest="build/download/apache-manifoldcf-solr-9.x-plugin-bin.zip"/>
+ <get
src="https://downloads.apache.org/manifoldcf/apache-manifoldcf-solr-9.x-plugin-2.2/apache-manifoldcf-solr-9.x-plugin-2.2-bin.zip"
dest="build/download/apache-manifoldcf-solr-9.x-plugin-bin.zip"/>
<unzip src="build/download/apache-manifoldcf-solr-9.x-plugin-bin.zip"
dest="build/download/apache-manifoldcf-solr-9.x-plugin-bin"/>
<copy todir="lib/solr-9.x">
<fileset
dir="build/download/apache-manifoldcf-solr-9.x-plugin-bin/apache-manifoldcf-solr-9.x-plugin-2.2"/>