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 2013/02/01 03:10:14 UTC

svn commit: r1441292 - /manifoldcf/integration/sharepoint-2010/trunk/build.xml

Author: kwright
Date: Fri Feb  1 02:10:14 2013
New Revision: 1441292

URL: http://svn.apache.org/viewvc?rev=1441292&view=rev
Log:
Did not fix packaging properly; this checkin should do it.

Modified:
    manifoldcf/integration/sharepoint-2010/trunk/build.xml

Modified: manifoldcf/integration/sharepoint-2010/trunk/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/integration/sharepoint-2010/trunk/build.xml?rev=1441292&r1=1441291&r2=1441292&view=diff
==============================================================================
--- manifoldcf/integration/sharepoint-2010/trunk/build.xml (original)
+++ manifoldcf/integration/sharepoint-2010/trunk/build.xml Fri Feb  1 02:10:14 2013
@@ -90,22 +90,14 @@
 
     <target name="create-bin-zip" depends="build,set-version">
       <zip destfile="apache-manifoldcf-sharepoint-2010-plugin-${release-version}-bin.zip" update="false">
-        <zipfileset dir="." prefix="apache-manifoldcf-sharepoint-2010-plugin-${release-version}">
-          <exclude name="/wsdls/"/>
-          <exclude name="/webservice/"/>
-          <exclude name="apache-manifoldcf-sharepoint-2010-plugin-*"/>
-          <exclude name="build.xml"/>
+        <zipfileset dir="dist" prefix="apache-manifoldcf-sharepoint-2010-plugin-${release-version}">
         </zipfileset>
       </zip>
     </target>
       
     <target name="create-bin-tar" depends="build,set-version">
       <tar destfile="apache-manifoldcf-sharepoint-2010-plugin-${release-version}-bin.tar.gz" compression="gzip" longfile="gnu">
-        <tarfileset dir="." prefix="apache-manifoldcf-sharepoint-2010-plugin-${release-version}">
-          <exclude name="/wsdls/"/>
-          <exclude name="/webservice/"/>
-          <exclude name="apache-manifoldcf-sharepoint-2010-plugin-*"/>
-          <exclude name="build.xml"/>
+        <tarfileset dir="dist" prefix="apache-manifoldcf-sharepoint-2010-plugin-${release-version}">
         </tarfileset>
       </tar>
     </target>