[jboss-cvs] JBossAS SVN: r83070 - projects/ejb3/trunk/docs/tutorial/common.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Jan 19 04:13:10 EST 2009


Author: jaikiran
Date: 2009-01-19 04:13:10 -0500 (Mon, 19 Jan 2009)
New Revision: 83070

Modified:
   projects/ejb3/trunk/docs/tutorial/common/pom.xml
Log:
Added support for providing jvm args to the tutorial client(s)

Modified: projects/ejb3/trunk/docs/tutorial/common/pom.xml
===================================================================
--- projects/ejb3/trunk/docs/tutorial/common/pom.xml	2009-01-19 09:05:24 UTC (rev 83069)
+++ projects/ejb3/trunk/docs/tutorial/common/pom.xml	2009-01-19 09:13:10 UTC (rev 83070)
@@ -18,6 +18,13 @@
 			(We don't have a use-case to support this, right now, so let's keep this simple)
 		  -->
 		<jboss.ejb3.tutorial.client.args></jboss.ejb3.tutorial.client.args>
+
+		<!--  A space-delimited list of JVM arguments to be passed to the ${ejb3.tutorial.client}
+			Individual tutorial can provide their own value for this property. By default its empty.
+			Note that, since this is a space-delimited list, we won't support (as of now) argument value having a space
+			(We don't have a use-case to support this, right now, so let's keep this simple)
+		  -->
+		<jboss.ejb3.tutorial.client.jvmargs></jboss.ejb3.tutorial.client.jvmargs>
 		
 	  	<!--  Versions -->
 	    <version.maven-jboss-as-control-plugin>0.1.1-SNAPSHOT</version.maven-jboss-as-control-plugin>
@@ -146,6 +153,7 @@
 		         					<classpath refid="maven.runtime.classpath"/>
 		         					<!-- Command line argument(s) -->
 		         					<arg line="${jboss.ejb3.tutorial.client.args}"/>
+		         					<jvmarg line="${jboss.ejb3.tutorial.client.jvmargs}"/>
 		      					</java>
 		      					<echo message="********************************************************************************************" />
 		              		</tasks>




More information about the jboss-cvs-commits mailing list