[jboss-cvs] JBossAS SVN: r83548 - projects/ejb3/trunk/docs/tutorial/dist.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Jan 28 04:58:31 EST 2009


Author: jaikiran
Date: 2009-01-28 04:58:31 -0500 (Wed, 28 Jan 2009)
New Revision: 83548

Modified:
   projects/ejb3/trunk/docs/tutorial/dist/Readme.txt
   projects/ejb3/trunk/docs/tutorial/dist/build-dist.xml
Log:
Minor changes to the build script to include the Readme.txt

Modified: projects/ejb3/trunk/docs/tutorial/dist/Readme.txt
===================================================================
--- projects/ejb3/trunk/docs/tutorial/dist/Readme.txt	2009-01-28 09:42:31 UTC (rev 83547)
+++ projects/ejb3/trunk/docs/tutorial/dist/Readme.txt	2009-01-28 09:58:31 UTC (rev 83548)
@@ -2,7 +2,7 @@
 Instructions to setup the EJB3 tutorials
 ------------------------------------------
 
-* Extract the downloaded .zip/.tar.gz to some location on your system. For ex: /home/xyz/JBossEJB3
+* Extract the .zip/.tar.gz to some location on your system. For ex: /home/xyz/JBossEJB3
 * After you have extracted, you will find two folders namely "guide" and "source"
 * The "guide" contains html version of the tutorial documentation and will help you in building and running the tutorials.
 * The "source" contains multiple tutorials which illustrate various features of EJB3.

Modified: projects/ejb3/trunk/docs/tutorial/dist/build-dist.xml
===================================================================
--- projects/ejb3/trunk/docs/tutorial/dist/build-dist.xml	2009-01-28 09:42:31 UTC (rev 83547)
+++ projects/ejb3/trunk/docs/tutorial/dist/build-dist.xml	2009-01-28 09:58:31 UTC (rev 83548)
@@ -17,13 +17,14 @@
 		<zip zipfile="${dist.dir}/${dist.zip}">
 	         <zipfileset dir="${tutorials.dir}" prefix="source">
 	         	<exclude name="**/target/**/*"/>
+	         	<exclude name="**/dist/**/*"/>
 	         </zipfileset>
 			
 			<zipfileset dir="${guide.dir}/target/docbook" prefix="guide">
 				<include name="html/**/*"/>
 				<include name="html_single/**/*"/>
 			</zipfileset>
-		      	
+		    <zipfileset file="${basedir}/Readme.txt"/>  	
 		</zip>
 	</target>
 	
@@ -31,12 +32,15 @@
 		<tar destfile="${dist.dir}/${dist.tar}" compression="gzip">
 			<tarfileset dir="${tutorials.dir}" prefix="source">
 				<exclude name="**/target/**/*"/>
+				<exclude name="**/dist/**/*"/>
 			</tarfileset>
 			
 			<tarfileset dir="${guide.dir}/target/docbook" prefix="guide">
 				<include name="html/**/*"/>
 				<include name="html_single/**/*"/>
 			</tarfileset>
+			<tarfileset file="${basedir}/Readme.txt"/>
+			
 		</tar>
 	
 	</target>




More information about the jboss-cvs-commits mailing list