Author: kwright
Date: Wed Sep 26 18:55:48 2012
New Revision: 1390667
URL: http://svn.apache.org/viewvc?rev=1390667&view=rev
Log:
Fix for CONNECTORS-535.
Removed:
manifoldcf/trunk/connectors/solr/integration/
Modified:
manifoldcf/trunk/CHANGES.txt
manifoldcf/trunk/connectors/solr/build.xml
Modified: manifoldcf/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/CHANGES.txt?rev=1390667&r1=1390666&r2=1390667&view=diff
==============================================================================
--- manifoldcf/trunk/CHANGES.txt (original)
+++ manifoldcf/trunk/CHANGES.txt Wed Sep 26 18:55:48 2012
@@ -3,6 +3,9 @@ $Id$
======================= 1.1-dev =====================
+CONNECTORS-535: Move readme files into Solr plugin modules.
+(Karl Wright)
+
======================= Release 1.0 =====================
CONNECTORS-540: Multi-process proprietary webapps run not properly
Modified: manifoldcf/trunk/connectors/solr/build.xml
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/solr/build.xml?rev=1390667&r1=1390666&r2=1390667&view=diff
==============================================================================
--- manifoldcf/trunk/connectors/solr/build.xml (original)
+++ manifoldcf/trunk/connectors/solr/build.xml Wed Sep 26 18:55:48 2012
@@ -20,18 +20,13 @@
<import file="../connector-build.xml"/>
<target name="integration">
- <mkdir dir="dist/integration"/>
- <copy todir="dist/integration">
- <fileset dir="integration">
- <include name="README-3.x.txt"/>
- <include name="README-4.x.txt"/>
- </fileset>
- <fileset dir="../../lib/solr-3.x">
- <include name="apache-solr-mcf-*.jar"/>
- </fileset>
- <fileset dir="../../lib/solr-4.x">
- <include name="apache-solr-mcf-*.jar"/>
- </fileset>
+ <mkdir dir="dist/integration/solr-3.x"/>
+ <copy todir="dist/integration/solr-3.x">
+ <fileset dir="../../lib/solr-3.x"/>
+ </copy>
+ <mkdir dir="dist/integration/solr-4.x"/>
+ <copy todir="dist/integration/solr-4.x">
+ <fileset dir="../../lib/solr-4.x"/>
</copy>
</target>