[jboss-cvs] JBossAS SVN: r99515 - in trunk/testsuite: src/resources/deployers and 5 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Jan 17 23:17:13 EST 2010


Author: smcgowan at redhat.com
Date: 2010-01-17 23:17:13 -0500 (Sun, 17 Jan 2010)
New Revision: 99515

Added:
   trunk/testsuite/src/resources/deployers/seam/
   trunk/testsuite/src/resources/deployers/seam/booking/
   trunk/testsuite/src/resources/deployers/seam/booking/jboss-seam-booking-ds.xml
   trunk/testsuite/src/resources/deployers/seam/booking/jboss-seam-booking.ear
   trunk/testsuite/src/resources/deployers/seam/dvd/
   trunk/testsuite/src/resources/deployers/seam/dvd/jboss-seam-dvd-ds.xml
   trunk/testsuite/src/resources/deployers/seam/dvd/jboss-seam-dvd.ear
   trunk/testsuite/src/resources/deployers/seam/jpa-example/
   trunk/testsuite/src/resources/deployers/seam/jpa-example/jboss-seam-jpa.war
   trunk/testsuite/src/resources/deployers/seam/numberguess/
   trunk/testsuite/src/resources/deployers/seam/numberguess/jboss-seam-numberguess.ear
Modified:
   trunk/testsuite/imports/sections/seam.xml
Log:
JBAS-7594 - corrected tld in seam example test archives

Modified: trunk/testsuite/imports/sections/seam.xml
===================================================================
--- trunk/testsuite/imports/sections/seam.xml	2010-01-18 04:11:42 UTC (rev 99514)
+++ trunk/testsuite/imports/sections/seam.xml	2010-01-18 04:17:13 UTC (rev 99515)
@@ -6,6 +6,7 @@
    	
       <mkdir dir="${build.lib}"/>
 
+<!--
       <maven:dependencies filesetId="examples.fileset" versionsId="examples.versions">
           <dependency groupId="org.jboss.seam.examples" artifactId="jboss-seam-booking" version="${seam_version}" type="ear"/>
       	  <dependency groupId="org.jboss.seam.examples" artifactId="jboss-seam-booking" version="${seam_version}" type="xml" classifier="ds"/>
@@ -21,6 +22,15 @@
    		  <fileset refid="examples.fileset" />
    		  <mapper classpathref="maven-ant-tasks.classpath" classname="org.apache.maven.artifact.ant.VersionMapper" from="${examples.versions}" to="flatten" />
    	  </copy>
+-->
+
+         <!-- JBAS-7594 -->
+         <copy todir="${build.lib}" overwrite="true" flatten="true">
+         	<fileset dir="${source.resources}/deployers/seam">
+            		<include name="*/*.*"/>
+         	</fileset>
+	</copy>
+
    	
    </target>
    	  	

Added: trunk/testsuite/src/resources/deployers/seam/booking/jboss-seam-booking-ds.xml
===================================================================
--- trunk/testsuite/src/resources/deployers/seam/booking/jboss-seam-booking-ds.xml	                        (rev 0)
+++ trunk/testsuite/src/resources/deployers/seam/booking/jboss-seam-booking-ds.xml	2010-01-18 04:17:13 UTC (rev 99515)
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!DOCTYPE datasources
+    PUBLIC "-//JBoss//DTD JBOSS JCA Config 1.5//EN"
+    "http://www.jboss.org/j2ee/dtd/jboss-ds_1_5.dtd">
+
+<datasources>
+    <local-tx-datasource>
+        <jndi-name>bookingDatasource</jndi-name>
+        <connection-url>jdbc:hsqldb:.</connection-url>
+        <driver-class>org.hsqldb.jdbcDriver</driver-class>
+        <user-name>sa</user-name>
+        <password></password>
+    </local-tx-datasource>
+</datasources>
+

Added: trunk/testsuite/src/resources/deployers/seam/booking/jboss-seam-booking.ear
===================================================================
(Binary files differ)


Property changes on: trunk/testsuite/src/resources/deployers/seam/booking/jboss-seam-booking.ear
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/testsuite/src/resources/deployers/seam/dvd/jboss-seam-dvd-ds.xml
===================================================================
--- trunk/testsuite/src/resources/deployers/seam/dvd/jboss-seam-dvd-ds.xml	                        (rev 0)
+++ trunk/testsuite/src/resources/deployers/seam/dvd/jboss-seam-dvd-ds.xml	2010-01-18 04:17:13 UTC (rev 99515)
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!DOCTYPE datasources
+    PUBLIC "-//JBoss//DTD JBOSS JCA Config 1.5//EN"
+    "http://www.jboss.org/j2ee/dtd/jboss-ds_1_5.dtd">
+
+<datasources>
+    <local-tx-datasource>
+        <jndi-name>dvdDatasource</jndi-name>
+        <connection-url>jdbc:hsqldb:${jboss.server.data.dir}${/}hypersonic${/}dvd</connection-url>
+        <!-- <connection-url>jdbc:hsqldb:.</connection-url> -->
+        <driver-class>org.hsqldb.jdbcDriver</driver-class>
+        <user-name>sa</user-name>
+        <password></password>
+    </local-tx-datasource>
+
+    <mbean code="org.jboss.jdbc.HypersonicDatabase" 
+           name="jboss:service=Hypersonic,database=dvd">
+        <attribute name="Database">dvd</attribute>
+        <attribute name="InProcessMode">true</attribute>
+    </mbean>  
+    
+    <!-- -->
+<!--
+    <local-tx-datasource>
+        <jndi-name>dvdDatasource</jndi-name>
+        <connection-url>jdbc:mysql://localhost:3306/dvdstore</connection-url>
+        <driver-class>com.mysql.jdbc.Driver</driver-class>
+        <user-name>gavin</user-name>
+        <password></password>
+        <exception-sorter-class-name>
+            org.jboss.resource.adapter.jdbc.vendor.MySQLExceptionSorter
+        </exception-sorter-class-name>
+
+        <metadata>
+            <type-mapping>mySQL</type-mapping>
+        </metadata>
+    </local-tx-datasource>
+-->
+</datasources>
+

Added: trunk/testsuite/src/resources/deployers/seam/dvd/jboss-seam-dvd.ear
===================================================================
(Binary files differ)


Property changes on: trunk/testsuite/src/resources/deployers/seam/dvd/jboss-seam-dvd.ear
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/testsuite/src/resources/deployers/seam/jpa-example/jboss-seam-jpa.war
===================================================================
(Binary files differ)


Property changes on: trunk/testsuite/src/resources/deployers/seam/jpa-example/jboss-seam-jpa.war
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/testsuite/src/resources/deployers/seam/numberguess/jboss-seam-numberguess.ear
===================================================================
(Binary files differ)


Property changes on: trunk/testsuite/src/resources/deployers/seam/numberguess/jboss-seam-numberguess.ear
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream




More information about the jboss-cvs-commits mailing list