[jboss-cvs] JBossAS SVN: r104830 - in projects/ejb-book/trunk: chxx-timer and 3 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sat May 15 23:42:32 EDT 2010


Author: ALRubinger
Date: 2010-05-15 23:42:31 -0400 (Sat, 15 May 2010)
New Revision: 104830

Added:
   projects/ejb-book/trunk/chxx-timer/
   projects/ejb-book/trunk/chxx-timer/pom.xml
   projects/ejb-book/trunk/chxx-timer/src/
   projects/ejb-book/trunk/chxx-timer/src/main/
   projects/ejb-book/trunk/chxx-timer/src/main/java/
   projects/ejb-book/trunk/chxx-timer/src/main/resources/
   projects/ejb-book/trunk/chxx-timer/src/test/
   projects/ejb-book/trunk/chxx-timer/src/test/java/
   projects/ejb-book/trunk/chxx-timer/src/test/resources/
Log:
[EJBBOOK-24] First commit of Timer Service examples.  There are no backing integration test currently as OpenEJB, JBossAS, and GFv3 Embedded are either unimplemented or unsupported/undocumented in embedded modes to get timers working correctly.  Should be sufficient to show programmatic and declarative creation however for the time being.


Property changes on: projects/ejb-book/trunk/chxx-timer
___________________________________________________________________
Name: svn:ignore
   + target
.settings
.classpath
.project
bin


Added: projects/ejb-book/trunk/chxx-timer/pom.xml
===================================================================
--- projects/ejb-book/trunk/chxx-timer/pom.xml	                        (rev 0)
+++ projects/ejb-book/trunk/chxx-timer/pom.xml	2010-05-16 03:42:31 UTC (rev 104830)
@@ -0,0 +1,89 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+  <!-- Parent Information -->
+  <parent>
+    <groupId>org.jboss.ejb3.examples</groupId>
+    <artifactId>jboss-ejb3-examples-build</artifactId>
+    <version>0.0.1-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <!-- Model Version -->
+  <modelVersion>4.0.0</modelVersion>
+
+  <!-- Artifact Information -->
+  <artifactId>jboss-ejb3-examples-chxx-timer</artifactId>
+  <name>JBoss EJB 3.x Examples - Chapter XX: EJB Timer Service</name>
+  <description>Example to accompany O'Reilly "Enterprise Java Beans 6th Edition" Chapter XX</description>
+
+  <!-- Build -->
+  <build>
+  </build>
+
+
+  <!-- Properties -->
+  <properties>
+
+    <!-- Versioning -->
+
+  </properties>
+
+  <!-- Dependencies -->
+  <dependencies>
+
+    <dependency>
+      <groupId>org.jboss.spec.javax.ejb</groupId>
+      <artifactId>jboss-ejb-api_3.1_spec</artifactId>
+    </dependency>
+
+    <!-- 
+    
+    Test Dependencies
+     -->
+
+    <!-- Arquillian Test Harness  
+    <dependency>
+      <groupId>org.jboss.arquillian.container</groupId>
+      <artifactId>arquillian-glassfish-embedded-30</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.arquillian.container</groupId>
+      <artifactId>arquillian-openejb</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.arquillian</groupId>
+      <artifactId>arquillian-junit</artifactId>
+    </dependency> -->
+    
+    <!-- JUnit -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+    </dependency>
+   
+    <!-- GlassFish Embedded v3 
+    <dependency>
+      <groupId>org.glassfish.extras</groupId>
+      <artifactId>glassfish-embedded-all</artifactId>   
+    </dependency>
+    <dependency>
+      <groupId>org.glassfish.extras</groupId>
+      <artifactId>glassfish-embedded-shell</artifactId>
+     </dependency>
+     <dependency>
+      <groupId>org.glassfish.ejb</groupId>
+      <artifactId>ejb-timer-service-app</artifactId>
+      <type>war</type>
+    </dependency> -->
+   
+   <!--  OpenEJB
+    <dependency>
+      <groupId>org.apache.openejb</groupId>
+      <artifactId>openejb-core</artifactId>
+      <scope>test</scope>
+    </dependency> -->
+     
+  </dependencies>
+
+</project>


Property changes on: projects/ejb-book/trunk/chxx-timer/pom.xml
___________________________________________________________________
Name: svn:executable
   + *




More information about the jboss-cvs-commits mailing list