[seam-commits] Seam SVN: r14411 - in branches/community/Seam_2_3/examples-ee6: booking/booking-ear/src/main/application/META-INF and 1 other directories.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Thu Mar 15 05:52:46 EDT 2012


Author: manaRH
Date: 2012-03-15 05:52:45 -0400 (Thu, 15 Mar 2012)
New Revision: 14411

Added:
   branches/community/Seam_2_3/examples-ee6/booking/booking-ear/src/main/application/META-INF/jboss-seam-booking-ds.xml
Modified:
   branches/community/Seam_2_3/examples-ee6/booking/booking-ear/pom.xml
   branches/community/Seam_2_3/examples-ee6/messages/messages-ear/pom.xml
Log:
added booking datasource into EAR packaging and tidy up jboss as maven deploy plugin

Modified: branches/community/Seam_2_3/examples-ee6/booking/booking-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/booking/booking-ear/pom.xml	2012-03-15 09:07:18 UTC (rev 14410)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-ear/pom.xml	2012-03-15 09:52:45 UTC (rev 14411)
@@ -135,7 +135,6 @@
 			<plugin>
 				<groupId>org.jboss.as.plugins</groupId>
 				<artifactId>jboss-as-maven-plugin</artifactId>
-				<version>7.1.0.Final</version>
 				<executions>
 					<!-- This requires to be enabled manually as <enabled>true</enabled> doesn't 
 						work -->

Added: branches/community/Seam_2_3/examples-ee6/booking/booking-ear/src/main/application/META-INF/jboss-seam-booking-ds.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/booking/booking-ear/src/main/application/META-INF/jboss-seam-booking-ds.xml	                        (rev 0)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-ear/src/main/application/META-INF/jboss-seam-booking-ds.xml	2012-03-15 09:52:45 UTC (rev 14411)
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<datasources xmlns="http://www.jboss.org/ironjacamar/schema">
+    <datasource 
+        jndi-name="java:/bookingDatasource" 
+        enabled="true" 
+        use-java-context="true" pool-name="bookingdb">
+        <connection-url>jdbc:h2:mem:dvdstoredb;DB_CLOSE_DELAY=-1</connection-url>
+        <driver>h2</driver>
+        <security>
+            <user-name>sa</user-name>
+            <password>sa</password>
+        </security>
+    </datasource>
+</datasources>
\ No newline at end of file

Modified: branches/community/Seam_2_3/examples-ee6/messages/messages-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/messages/messages-ear/pom.xml	2012-03-15 09:07:18 UTC (rev 14410)
+++ branches/community/Seam_2_3/examples-ee6/messages/messages-ear/pom.xml	2012-03-15 09:52:45 UTC (rev 14411)
@@ -83,7 +83,6 @@
             <plugin>
                 <groupId>org.jboss.as.plugins</groupId>
                 <artifactId>jboss-as-maven-plugin</artifactId>
-                <version>7.1.0.Final</version>
                 <executions>
                     <!-- This requires to be enabled manually as <enabled>true</enabled> doesn't
                              work -->



More information about the seam-commits mailing list