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:11:28 UTC

svn commit: r1441293 - in /manifoldcf/integration/sharepoint-2010/branches/release-0.2-branch: ./ build.xml

Author: kwright
Date: Fri Feb  1 02:11:28 2013
New Revision: 1441293

URL: http://svn.apache.org/viewvc?rev=1441293&view=rev
Log:
Pull up packaging fix from trunk.

Modified:
    manifoldcf/integration/sharepoint-2010/branches/release-0.2-branch/   (props changed)
    manifoldcf/integration/sharepoint-2010/branches/release-0.2-branch/build.xml

Propchange: manifoldcf/integration/sharepoint-2010/branches/release-0.2-branch/
------------------------------------------------------------------------------
    svn:mergeinfo = /manifoldcf/integration/sharepoint-2010/trunk:1441292

Modified: manifoldcf/integration/sharepoint-2010/branches/release-0.2-branch/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/integration/sharepoint-2010/branches/release-0.2-branch/build.xml?rev=1441293&r1=1441292&r2=1441293&view=diff
==============================================================================
--- manifoldcf/integration/sharepoint-2010/branches/release-0.2-branch/build.xml (original)
+++ manifoldcf/integration/sharepoint-2010/branches/release-0.2-branch/build.xml Fri Feb  1 02:11:28 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>