[jboss-cvs] JBossAS SVN: r82524 - in projects/ejb3/trunk/docs/tutorial: common and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Dec 23 08:34:34 EST 2008


Author: jaikiran
Date: 2008-12-23 08:34:34 -0500 (Tue, 23 Dec 2008)
New Revision: 82524

Modified:
   projects/ejb3/trunk/docs/tutorial/build.xml
   projects/ejb3/trunk/docs/tutorial/common/pom.xml
   projects/ejb3/trunk/docs/tutorial/pom.xml
Log:
1) Including more tutorials in the parent pom and build 2) Adding the maven runtime classpath to the Maven ant-run plugin to facilitate its use in the tutorial clients

Modified: projects/ejb3/trunk/docs/tutorial/build.xml
===================================================================
--- projects/ejb3/trunk/docs/tutorial/build.xml	2008-12-23 13:29:13 UTC (rev 82523)
+++ projects/ejb3/trunk/docs/tutorial/build.xml	2008-12-23 13:34:34 UTC (rev 82524)
@@ -20,12 +20,19 @@
 		
 		<antcall target="blob" inheritRefs="true"/>
 		<antcall target="callbacks" inheritRefs="true"/>
+		<antcall target="composite" inheritRefs="true"/>
 		<antcall target="entity" inheritRefs="true"/>
+		<antcall target="extended_pc" inheritRefs="true"/>
 		<antcall target="injection" inheritRefs="true"/>
 		<antcall target="jndibinding" inheritRefs="true"/>
 		<antcall target="merge" inheritRefs="true"/>
+		<antcall target="relationships" inheritRefs="true"/>
+		<antcall target="secondary" inheritRefs="true"/>
+		<antcall target="singleinheritance" inheritRefs="true"/>
 		<antcall target="stateful" inheritRefs="true"/>
+		<antcall target="stateful_deployment_descriptor" inheritRefs="true"/>
 		<antcall target="stateless" inheritRefs="true"/>
+		<antcall target="stateless_deployment_descriptor" inheritRefs="true"/>
 		
 		<!-- <antcall target="asynch" inheritRefs="true"/>
 		<antcall target="blob" inheritRefs="true"/>

Modified: projects/ejb3/trunk/docs/tutorial/common/pom.xml
===================================================================
--- projects/ejb3/trunk/docs/tutorial/common/pom.xml	2008-12-23 13:29:13 UTC (rev 82523)
+++ projects/ejb3/trunk/docs/tutorial/common/pom.xml	2008-12-23 13:34:34 UTC (rev 82524)
@@ -117,8 +117,9 @@
 		   						</path>
 		   						<echo message="*********************************** JBoss EJB3 Tutorials ***********************************" />
 		   						<echo message="**** Running ${ejb3.tutorial.client}" />
-								<java classname="${ejb3.tutorial.client}" fork="yes" dir="." failonerror="true">
-		         					<classpath refid="ejb3.tutorial.classpath"/> 
+		   						<java classname="${ejb3.tutorial.client}" fork="yes" dir="." failonerror="true">
+		         					<classpath refid="ejb3.tutorial.classpath"/>
+		         					<classpath refid="maven.runtime.classpath"/>
 		      					</java>
 		      					<echo message="********************************************************************************************" />
 		              		</tasks>
@@ -198,6 +199,8 @@
         	<groupId>org.jboss.javaee</groupId>
         	<artifactId>jboss-jms-api</artifactId>
       	</dependency>
+      
+      
   	
 	</dependencies>
   

Modified: projects/ejb3/trunk/docs/tutorial/pom.xml
===================================================================
--- projects/ejb3/trunk/docs/tutorial/pom.xml	2008-12-23 13:29:13 UTC (rev 82523)
+++ projects/ejb3/trunk/docs/tutorial/pom.xml	2008-12-23 13:34:34 UTC (rev 82524)
@@ -91,14 +91,21 @@
 			
 			<!-- The tutorials go here -->
 
-		 	<module>blob</module>
+		  	<module>blob</module>
+		 	<module>composite</module>
 			<module>callbacks</module>
 			<module>entity</module>
+			<module>extended_pc</module>
 			<module>injection</module>  
 			<module>jndibinding</module> 
 			<module>merge</module>
+			<module>relationships</module>
+			<module>secondary</module>
+			<module>singleinheritance</module>
 			<module>stateful</module>
-			<module>stateless</module>  
+			<module>stateful_deployment_descriptor</module>
+			<module>stateless</module>
+			<module>stateless_deployment_descriptor</module>
 
 			<!-- Responsible for JBossAS shutdown -->
 			<module>shutdown</module>




More information about the jboss-cvs-commits mailing list