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/01/07 03:37:27 UTC

svn commit: r1056170 - in /incubator/lcf/trunk: CHANGES.txt build.xml

Author: kwright
Date: Fri Jan  7 02:37:27 2011
New Revision: 1056170

URL: http://svn.apache.org/viewvc?rev=1056170&view=rev
Log:
CONNECTORS-132: Redefine image to not include any build artifacts except documentation.

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

Modified: incubator/lcf/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/CHANGES.txt?rev=1056170&r1=1056169&r2=1056170&view=diff
==============================================================================
--- incubator/lcf/trunk/CHANGES.txt (original)
+++ incubator/lcf/trunk/CHANGES.txt Fri Jan  7 02:37:27 2011
@@ -14,6 +14,10 @@ forget the index state for an output con
 ======================= Release 0.1 =======================
 Release Date:  See http://incubator.apache.org/connectors for the official release date.
 
+CONNECTORS-136: Change rat-sources build target to exclude all files known good
+despite RAT complaints.
+(Sebb, Karl Wright)
+
 CONNECTORS-135: Adjust svn properties of files to be consistent with intended
 usage.
 (Sebb)

Modified: incubator/lcf/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/build.xml?rev=1056170&r1=1056169&r2=1056170&view=diff
==============================================================================
--- incubator/lcf/trunk/build.xml (original)
+++ incubator/lcf/trunk/build.xml Fri Jan  7 02:37:27 2011
@@ -1532,12 +1532,18 @@
       <property name="release-version" value="0.1-incubator"/>
     </target>
     
-    <target name="create-zip" depends="build,javadoc,doc,set-version">
+    <target name="create-zip" depends="doc,javadoc,set-version">
       <zip destfile="apache-manifoldcf-${release-version}.zip" update="false">
         <zipfileset dir="." prefix="apache-manifoldcf-${release-version}">
+          <include name="/"/>
           <exclude name="/connectors/*/lib/"/>
           <exclude name="/framework/lib/"/>
           <exclude name="**/build/"/>
+          <exclude name="/dist/example/"/>
+          <exclude name="/dist/processes/"/>
+          <exclude name="/dist/web/"/>
+          <exclude name="/dist/lib/"/>
+          <exclude name="/dist/*-process/"/>
           <exclude name="/connectors/*/dist/"/>
           <exclude name="/framework/dist/"/>
           <exclude name="**/test-output/"/>
@@ -1549,12 +1555,17 @@
       </zip>
     </target>
     
-    <target name="create-tar" depends="build,javadoc,doc,set-version">
+    <target name="create-tar" depends="doc,javadoc,set-version">
       <tar destfile="apache-manifoldcf-${release-version}.tar.gz" compression="gzip" longfile="gnu">
         <tarfileset dir="." prefix="apache-manifoldcf-${release-version}">
           <exclude name="/connectors/*/lib/"/>
           <exclude name="/framework/lib/"/>
           <exclude name="**/build/"/>
+          <exclude name="/dist/example/"/>
+          <exclude name="/dist/processes/"/>
+          <exclude name="/dist/web/"/>
+          <exclude name="/dist/lib/"/>
+          <exclude name="/dist/*-process/"/>
           <exclude name="/connectors/*/dist/"/>
           <exclude name="/framework/dist/"/>
           <exclude name="**/test-output/"/>