You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2011/10/16 19:19:13 UTC

svn commit: r1184875 - in /incubator/lcf/trunk: CHANGES.txt build.xml connectors/sharepoint/build.xml

Author: kwright
Date: Sun Oct 16 17:19:12 2011
New Revision: 1184875

URL: http://svn.apache.org/viewvc?rev=1184875&view=rev
Log:
Fix for CONNECTORS-262.  Now download-dependencies picks up the SharePoint wsdls too.

Modified:
    incubator/lcf/trunk/CHANGES.txt
    incubator/lcf/trunk/build.xml
    incubator/lcf/trunk/connectors/sharepoint/build.xml

Modified: incubator/lcf/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/CHANGES.txt?rev=1184875&r1=1184874&r2=1184875&view=diff
==============================================================================
--- incubator/lcf/trunk/CHANGES.txt (original)
+++ incubator/lcf/trunk/CHANGES.txt Sun Oct 16 17:19:12 2011
@@ -3,6 +3,10 @@ $Id$
 
 ======================= 0.4-dev =====================
 
+CONNECTORS-262: Pull down .wsdls from SharePoint 3.0 example site
+in the ant build (download-dependencies target).
+(Shinichiro Abe, Karl Wright)
+
 CONNECTORS-276: Pull down jtds and mysql drivers from maven repository
 in the ant build (download-dependencies target),
 and add these dependencies in appropriate places in the maven build as

Modified: incubator/lcf/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/build.xml?rev=1184875&r1=1184874&r2=1184875&view=diff
==============================================================================
--- incubator/lcf/trunk/build.xml (original)
+++ incubator/lcf/trunk/build.xml Sun Oct 16 17:19:12 2011
@@ -3274,6 +3274,7 @@ Use Apache Forrest version forrest-0.9-d
     <target name="download-dependencies">
         <ant dir="connectors/jcifs" target="download-dependencies"/>
         <ant dir="connectors/jdbc" target="download-dependencies"/>
+        <ant dir="connectors/sharepoint" target="download-dependencies"/>
     </target>
 
 </project>

Modified: incubator/lcf/trunk/connectors/sharepoint/build.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/connectors/sharepoint/build.xml?rev=1184875&r1=1184874&r2=1184875&view=diff
==============================================================================
--- incubator/lcf/trunk/connectors/sharepoint/build.xml (original)
+++ incubator/lcf/trunk/connectors/sharepoint/build.xml Sun Oct 16 17:19:12 2011
@@ -165,5 +165,15 @@
     <target name="run-tests-postgresql"/>
     <target name="run-tests-HSQLDB"/>
     <target name="all" depends="build,doc,build-tests,run-tests,run-tests-derby,run-tests-postgresql,run-tests-HSQLDB"/>
-    
+
+    <target name="download-dependencies">
+        <get src="http://www.wssdemo.com/_vti_bin/Permissions.asmx?wsdl=true" dest="wsdls/Permissions.wsdl"/>
+        <get src="http://www.wssdemo.com/_vti_bin/DspSts.asmx?wsdl=true" dest="wsdls/DspSts.wsdl"/>
+        <get src="http://www.wssdemo.com/_vti_bin/Lists.asmx?wsdl=true" dest="wsdls/Lists.wsdl"/>
+        <get src="http://www.wssdemo.com/_vti_bin/usergroup.asmx?wsdl=true" dest="wsdls/usergroup.wsdl"/>
+        <get src="http://www.wssdemo.com/_vti_bin/versions.asmx?wsdl=true" dest="wsdls/versions.wsdl"/>
+        <get src="http://www.wssdemo.com/_vti_bin/webs.asmx?wsdl=true" dest="wsdls/webs.wsdl"/>
+
+    </target>
+
 </project>