[jboss-cvs] JBossAS SVN: r82561 - projects/ejb3/trunk/docs/tutorial.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Mon Dec 29 08:12:49 EST 2008
Author: jaikiran
Date: 2008-12-29 08:12:49 -0500 (Mon, 29 Dec 2008)
New Revision: 82561
Modified:
projects/ejb3/trunk/docs/tutorial/build.xml
projects/ejb3/trunk/docs/tutorial/pom.xml
Log:
More tutorials included in the parent build/pom scripts
Modified: projects/ejb3/trunk/docs/tutorial/build.xml
===================================================================
--- projects/ejb3/trunk/docs/tutorial/build.xml 2008-12-29 10:35:59 UTC (rev 82560)
+++ projects/ejb3/trunk/docs/tutorial/build.xml 2008-12-29 13:12:49 UTC (rev 82561)
@@ -23,10 +23,13 @@
<antcall target="composite" inheritRefs="true"/>
<antcall target="consumer" inheritRefs="true"/>
<antcall target="consumer_deployment_descriptor" inheritRefs="true"/>
+ <antcall target="embeddable" inheritRefs="true"/>
<antcall target="entity" inheritRefs="true"/>
<antcall target="extended_pc" inheritRefs="true"/>
<antcall target="injection" inheritRefs="true"/>
+ <antcall target="interceptor" inheritRefs="true"/>
<antcall target="jndibinding" inheritRefs="true"/>
+ <antcall target="mdb" inheritRefs="true"/>
<antcall target="merge" inheritRefs="true"/>
<antcall target="relationships" inheritRefs="true"/>
<antcall target="secondary" inheritRefs="true"/>
@@ -36,6 +39,7 @@
<antcall target="stateful_deployment_descriptor" inheritRefs="true"/>
<antcall target="stateless" inheritRefs="true"/>
<antcall target="stateless_deployment_descriptor" inheritRefs="true"/>
+ <antcall target="timer" inheritRefs="true"/>
<!-- <antcall target="asynch" inheritRefs="true"/>
<antcall target="blob" inheritRefs="true"/>
@@ -158,13 +162,13 @@
<ant dir="dependency" antfile="build.xml" target="clean"/>
</target>
- <target name="dependent">
- <echo message="---------------- Running dependent ------------"/>
- <ant dir="dependent" antfile="build.xml"/>
- <sleep seconds="5"/>
- <ant dir="dependent" antfile="build.xml" target="run"/>
+ <target name="embeddable">
+ <echo message="---------------- Running embeddable ------------"/>
+ <ant dir="embeddable" antfile="build.xml"/>
+ <sleep seconds="10"/>
+ <ant dir="embeddable" antfile="build.xml" target="run"/>
<sleep seconds="4"/>
- <ant dir="dependent" antfile="build.xml" target="clean"/>
+ <ant dir="embeddable" antfile="build.xml" target="clean"/>
</target>
<target name="ear">
@@ -249,7 +253,7 @@
<target name="joininheritance">
<echo message="---------------- Running joininheritance ------------"/>
<ant dir="joininheritance" antfile="build.xml"/>
- <sleep seconds="5"/>
+ <sleep seconds="10"/>
<ant dir="joininheritance" antfile="build.xml" target="run"/>
<sleep seconds="4"/>
<ant dir="joininheritance" antfile="build.xml" target="clean"/>
@@ -258,7 +262,7 @@
<target name="mdb">
<echo message="---------------- Running mdb ------------"/>
<ant dir="mdb" antfile="build.xml"/>
- <sleep seconds="5"/>
+ <sleep seconds="10"/>
<ant dir="mdb" antfile="build.xml" target="run"/>
<sleep seconds="4"/>
<ant dir="mdb" antfile="build.xml" target="clean"/>
@@ -267,7 +271,7 @@
<target name="mdb_deployment_descriptor">
<echo message="---------------- Running mdb_deployment_descriptor ------------"/>
<ant dir="mdb_deployment_descriptor" antfile="build.xml"/>
- <sleep seconds="5"/>
+ <sleep seconds="10"/>
<ant dir="mdb_deployment_descriptor" antfile="build.xml" target="run"/>
<sleep seconds="4"/>
<ant dir="mdb_deployment_descriptor" antfile="build.xml" target="clean"/>
Modified: projects/ejb3/trunk/docs/tutorial/pom.xml
===================================================================
--- projects/ejb3/trunk/docs/tutorial/pom.xml 2008-12-29 10:35:59 UTC (rev 82560)
+++ projects/ejb3/trunk/docs/tutorial/pom.xml 2008-12-29 13:12:49 UTC (rev 82561)
@@ -96,10 +96,13 @@
<module>composite</module>
<module>consumer</module>
<module>consumer_deployment_descriptor</module>
+ <module>embeddable</module>
<module>entity</module>
<module>extended_pc</module>
- <module>injection</module>
+ <module>injection</module>
+ <module>interceptor</module>
<module>jndibinding</module>
+ <module>mdb</module>
<module>mdb_deployment_descriptor</module>
<module>merge</module>
<module>relationships</module>
@@ -109,8 +112,10 @@
<module>stateful</module>
<module>stateful_deployment_descriptor</module>
<module>stateless</module>
- <module>stateless_deployment_descriptor</module>
-
+ <module>stateless_deployment_descriptor</module>
+ <module>timer</module>
+
+
<!-- Responsible for JBossAS shutdown -->
<module>shutdown</module>
More information about the jboss-cvs-commits
mailing list