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 2012/08/09 10:59:33 UTC

svn commit: r1371100 - in /manifoldcf/integration/sharepoint-2007/trunk: build.xml webservice/Web References/SPPermissionsService/Permissions.wsdl wsdls/Permissions.wsdl

Author: kwright
Date: Thu Aug  9 08:59:33 2012
New Revision: 1371100

URL: http://svn.apache.org/viewvc?rev=1371100&view=rev
Log:
Rearrange directory in preparation for next release.

Added:
    manifoldcf/integration/sharepoint-2007/trunk/webservice/Web References/SPPermissionsService/Permissions.wsdl
      - copied unchanged from r1362421, manifoldcf/integration/sharepoint-2007/trunk/wsdls/Permissions.wsdl
Removed:
    manifoldcf/integration/sharepoint-2007/trunk/wsdls/Permissions.wsdl
Modified:
    manifoldcf/integration/sharepoint-2007/trunk/build.xml

Modified: manifoldcf/integration/sharepoint-2007/trunk/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/integration/sharepoint-2007/trunk/build.xml?rev=1371100&r1=1371099&r2=1371100&view=diff
==============================================================================
--- manifoldcf/integration/sharepoint-2007/trunk/build.xml (original)
+++ manifoldcf/integration/sharepoint-2007/trunk/build.xml Thu Aug  9 08:59:33 2012
@@ -31,28 +31,14 @@
     </target>
 
     
-    <target name="calculate-condition">
-        <available file="wsdls/Permissions.wsdl" property="PermissionsStatus"/>
-        <condition property="canBuild">
-            <and>
-                <isset property="PermissionsStatus"/>
-            </and>
-        </condition>
-    </target>
-    
-    <target name="precompile-check" depends="calculate-condition" unless="canBuild">
-        <echo message="Apache SharePoint 2007 ManifoldCF Plugin cannot be built without Permissions.wsdl"/>
-    </target>
-
-    <target name="compile" depends="precompile-check" if="canBuild">
-        <copy todir="webservice/Web References/SPPermissionsService" file="wsdls/Permissions.wsdl"/>
+    <target name="compile">
         <exec executable="cmd" dir="webservice" failonerror="true" failifexecutionfails="true">
             <arg value="/c"/>
             <arg value="build.bat"/>
         </exec>
     </target>
 
-    <target name="deliver" depends="compile" if="canBuild">
+    <target name="deliver" depends="compile">
         <mkdir dir="dist"/>
         <copy todir="dist">
             <fileset dir="webservice/Package">
@@ -63,10 +49,10 @@
         </copy>
     </target>
 
-    <target name="build" depends="deliver" if="canBuild"/>
+    <target name="build" depends="deliver"/>
     
     <target name="set-version">
-        <property name="release-version" value="0.2-dev"/>
+        <property name="release-version" value="0.3-dev"/>
     </target>
       
     <target name="create-source-zip" depends="set-version">