[seam-commits] Seam SVN: r9155 - in trunk/examples: messages and 1 other directory.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Wed Oct 1 08:28:01 EDT 2008


Author: manaRH
Date: 2008-10-01 08:28:01 -0400 (Wed, 01 Oct 2008)
New Revision: 9155

Modified:
   trunk/examples/build.xml
   trunk/examples/messages/build.xml
Log:
JBSEAM-3324

Modified: trunk/examples/build.xml
===================================================================
--- trunk/examples/build.xml	2008-10-01 00:05:26 UTC (rev 9154)
+++ trunk/examples/build.xml	2008-10-01 12:28:01 UTC (rev 9155)
@@ -146,6 +146,11 @@
 		<include name="jboss-seam-ui.jar" if="seam.ui.lib" />
 		<include name="commons-beanutils.jar" if="seam.ui.lib" unless="richfaces.lib" />
 	</fileset>
+	
+	<!-- tomcat needs in messages example jstl.jar -->
+	<fileset dir="${lib.dir}" id="tomcat-standard-tag.jar">
+	    <include name="jstl.jar" if="tomcat.standard.tag"/>
+	</fileset>
 
 	<!-- Seam  pdf, with required dependencies -->
 	<fileset id="seam.pdf.jar" dir="${lib.dir}">
@@ -546,7 +551,7 @@
 		<copyInlineDependencies id="elri" scope="runtime" todir="${lib.dir}">
 			<dependency groupId="javax.el" artifactId="el-ri" version="1.2" />
 		</copyInlineDependencies>
-	</target>
+	</target>	
      
 	<!-- Use the Eclipse compiler, if it is available -->
 	<target name="select-compiler">
@@ -595,6 +600,7 @@
 			<fileset refid="trinidad-impl.jar" />
 			<fileset refid="jboss-common-core.jar" />
 			<fileset refid="war.lib.extras" />
+			<fileset refid="tomcat-standard-tag.jar" />
 			<mapper type="flatten" />
 		</copy>
 		<!-- Put properties into the classpath -->

Modified: trunk/examples/messages/build.xml
===================================================================
--- trunk/examples/messages/build.xml	2008-10-01 00:05:26 UTC (rev 9154)
+++ trunk/examples/messages/build.xml	2008-10-01 12:28:01 UTC (rev 9155)
@@ -8,8 +8,15 @@
 
     <!-- Libraries -->
 	<property name="seam.ui.lib"     value="yes"/>
+	<property name="tomcat.standard.tag" value="yes" />
  
-    <import file="../build.xml"/>
+    <import file="../build.xml"/>    
 
+	<target name="copyextradependencies">
+		<copyInlineDependencies id="jstl" scope="runtime" todir="${lib.dir}">
+			<dependency groupId="apache-taglibs" artifactId="jstl" version="1.1.2" />
+		</copyInlineDependencies>	
+	</target>
+
 </project>
 




More information about the seam-commits mailing list