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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Apr 10 08:40:22 EDT 2009


Author: jaikiran
Date: 2009-04-10 08:40:22 -0400 (Fri, 10 Apr 2009)
New Revision: 87123

Modified:
   projects/ejb3/trunk/docs/tutorial/enterprise_app_ejb_injection/build.xml
   projects/ejb3/trunk/docs/tutorial/reference21_30/build.xml
Log:
Updated the build files for a couple of tutorials to include servlet-api.jar in the classpath, since javax.servlet.* is no longer available in any jar of JBOSS_HOME/client folder

Modified: projects/ejb3/trunk/docs/tutorial/enterprise_app_ejb_injection/build.xml
===================================================================
--- projects/ejb3/trunk/docs/tutorial/enterprise_app_ejb_injection/build.xml	2009-04-10 11:33:17 UTC (rev 87122)
+++ projects/ejb3/trunk/docs/tutorial/enterprise_app_ejb_injection/build.xml	2009-04-10 12:40:22 UTC (rev 87123)
@@ -30,6 +30,11 @@
       <fileset dir="${jboss.home}/client">
          <include name="**/jbossall-client.jar"/>
       </fileset>
+      <!-- javax.servlet.* -->
+      <fileset dir="${jboss.home}/common/lib">
+	      <include name="servlet-api.jar"/>
+      </fileset>
+
       <pathelement location="${ejbapp.build.classes.dir}"/>
    	  <pathelement location="${webapp.build.classes.dir}"/>
    </path>

Modified: projects/ejb3/trunk/docs/tutorial/reference21_30/build.xml
===================================================================
--- projects/ejb3/trunk/docs/tutorial/reference21_30/build.xml	2009-04-10 11:33:17 UTC (rev 87122)
+++ projects/ejb3/trunk/docs/tutorial/reference21_30/build.xml	2009-04-10 12:40:22 UTC (rev 87123)
@@ -40,7 +40,12 @@
 		<fileset dir="${jboss.home}/common/lib">
 	   			<include name="ejb3-persistence.jar"/>
 	   	</fileset>
+	<!-- javax.servlet.* -->
+	<fileset dir="${jboss.home}/common/lib">
+		<include name="servlet-api.jar"/>
+	</fileset>
 
+
       	<pathelement location="${ejb21app.build.classes.dir}"/>
    		<pathelement location="${ejb3app.build.classes.dir}"/>
    		<pathelement location="${webapp.build.classes.dir}"/>




More information about the jboss-cvs-commits mailing list