You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ivy-commits@incubator.apache.org by xa...@apache.org on 2007/04/16 13:51:15 UTC

svn commit: r529251 - /incubator/ivy/core/branches/2.0.0-alpha-1/build-release.xml

Author: xavier
Date: Mon Apr 16 06:51:14 2007
New Revision: 529251

URL: http://svn.apache.org/viewvc?view=rev&rev=529251
Log:
exclude test and coverage reports from distributions

Modified:
    incubator/ivy/core/branches/2.0.0-alpha-1/build-release.xml

Modified: incubator/ivy/core/branches/2.0.0-alpha-1/build-release.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/branches/2.0.0-alpha-1/build-release.xml?view=diff&rev=529251&r1=529250&r2=529251
==============================================================================
--- incubator/ivy/core/branches/2.0.0-alpha-1/build-release.xml (original)
+++ incubator/ivy/core/branches/2.0.0-alpha-1/build-release.xml Mon Apr 16 06:51:14 2007
@@ -76,13 +76,13 @@
 	<target name="snapshot-src" depends="init-snapshot,all-doc">
 		<mkdir dir="${distrib.dir}"/>
 		<zip destfile="${distrib.dir}/${snapshot.full.name}-src.zip">
-			<zipfileset dir="${doc.build.dir}" prefix="${snapshot.full.name}/doc"/>
+			<zipfileset dir="${doc.build.dir}" prefix="${snapshot.full.name}/doc" excludes="**/reports/coverage/**,**/reports/test/**"/>
 			<zipfileset dir="${src.dir}" prefix="${snapshot.full.name}/src/java"/>
 			<zipfileset dir="${basedir}/src/example" prefix="${snapshot.full.name}/src/example"/>
 			<zipfileset dir="${test.dir}" prefix="${snapshot.full.name}/test/java"/>
 			<zipfileset dir="${basedir}/test/repositories" prefix="${snapshot.full.name}/test/repositories"/>
 			<zipfileset dir="${basedir}/test/buildlist" prefix="${snapshot.full.name}/test/buildlist"/>
-			<zipfileset dir="${basedir}/test/triggers" prefix="${snapshot.full.name}/test/triggers"/>
+			<zipfileset dir="${basedir}/test/triggers" prefix="${snapshot.full.name}/test/triggers" excludes="**/cache/**"/>
 			<zipfileset dir="${basedir}/test/xsl" prefix="${snapshot.full.name}/test/xsl"/>
 			<zipfileset dir="${src.dir}/org/apache/ivy/plugins/parser/xml" includes="ivy.xsd" fullpath="${snapshot.full.name}/ivy.xsd"/>
 			<zipfileset dir="${basedir}" includes="MANIFEST.MF" fullpath="${snapshot.full.name}/MANIFEST.MF"/>
@@ -111,7 +111,7 @@
 			pubdate="${pubdate}"
 		    status="${status}"/>
 		<zip destfile="${distrib.dir}/${snapshot.full.name}-bin.zip">
-			<zipfileset dir="${doc.build.dir}" prefix="${snapshot.full.name}/doc"/>
+			<zipfileset dir="${doc.build.dir}" prefix="${snapshot.full.name}/doc" excludes="**/reports/coverage/**,**/reports/test/**"/>
 			<zipfileset dir="${basedir}/src/example" prefix="${snapshot.full.name}/src/example"/>
 			<zipfileset dir="${basedir}" includes="DISCLAIMER" fullpath="${snapshot.full.name}/DISCLAIMER"/>
 			<zipfileset dir="${basedir}" includes="NOTICE" fullpath="${snapshot.full.name}/NOTICE"/>