You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ga...@apache.org on 2008/03/30 22:59:28 UTC

svn commit: r642817 - in /geronimo/sandbox/concurrent/concurrent-tests: concurrent-ear/pom.xml concurrent-ejb-ear/pom.xml concurrent-ejb/pom.xml concurrent-ejb/src/main/resources/META-INF/ejb-jar.xml concurrent-war/pom.xml pom.xml

Author: gawor
Date: Sun Mar 30 13:59:21 2008
New Revision: 642817

URL: http://svn.apache.org/viewvc?rev=642817&view=rev
Log:
getting some ejb tests to run

Modified:
    geronimo/sandbox/concurrent/concurrent-tests/concurrent-ear/pom.xml
    geronimo/sandbox/concurrent/concurrent-tests/concurrent-ejb-ear/pom.xml
    geronimo/sandbox/concurrent/concurrent-tests/concurrent-ejb/pom.xml
    geronimo/sandbox/concurrent/concurrent-tests/concurrent-ejb/src/main/resources/META-INF/ejb-jar.xml
    geronimo/sandbox/concurrent/concurrent-tests/concurrent-war/pom.xml
    geronimo/sandbox/concurrent/concurrent-tests/pom.xml

Modified: geronimo/sandbox/concurrent/concurrent-tests/concurrent-ear/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/concurrent/concurrent-tests/concurrent-ear/pom.xml?rev=642817&r1=642816&r2=642817&view=diff
==============================================================================
--- geronimo/sandbox/concurrent/concurrent-tests/concurrent-ear/pom.xml (original)
+++ geronimo/sandbox/concurrent/concurrent-tests/concurrent-ear/pom.xml Sun Mar 30 13:59:21 2008
@@ -32,7 +32,7 @@
     </parent>
 
     <artifactId>concurrent-ear</artifactId>
-    <name>Geronimo TestSuite :: Concurrent TestSuite :: EAR</name>
+    <name>Geronimo TestSuite :: Concurrent TestSuite :: WEB EAR</name>
     <packaging>ear</packaging>
 
     <description>This project executes testcases for your testsuite</description>

Modified: geronimo/sandbox/concurrent/concurrent-tests/concurrent-ejb-ear/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/concurrent/concurrent-tests/concurrent-ejb-ear/pom.xml?rev=642817&r1=642816&r2=642817&view=diff
==============================================================================
--- geronimo/sandbox/concurrent/concurrent-tests/concurrent-ejb-ear/pom.xml (original)
+++ geronimo/sandbox/concurrent/concurrent-tests/concurrent-ejb-ear/pom.xml Sun Mar 30 13:59:21 2008
@@ -78,6 +78,19 @@
             <version>${version}</version>
             <type>jar</type>
         </dependency>
+
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-ejb_3.0_spec</artifactId>
+            <scope>test</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.openejb</groupId>
+            <artifactId>openejb-client</artifactId>
+            <scope>test</scope>
+        </dependency>
+
     </dependencies>
 
     <build>

Modified: geronimo/sandbox/concurrent/concurrent-tests/concurrent-ejb/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/concurrent/concurrent-tests/concurrent-ejb/pom.xml?rev=642817&r1=642816&r2=642817&view=diff
==============================================================================
--- geronimo/sandbox/concurrent/concurrent-tests/concurrent-ejb/pom.xml (original)
+++ geronimo/sandbox/concurrent/concurrent-tests/concurrent-ejb/pom.xml Sun Mar 30 13:59:21 2008
@@ -58,16 +58,6 @@
             <version>${version}</version>
             <scope>provided</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.openejb</groupId>
-            <artifactId>openejb-core</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.openejb</groupId>
-            <artifactId>openejb-client</artifactId>
-            <scope>test</scope>
-        </dependency>
     </dependencies>
 
 </project>

Modified: geronimo/sandbox/concurrent/concurrent-tests/concurrent-ejb/src/main/resources/META-INF/ejb-jar.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/concurrent/concurrent-tests/concurrent-ejb/src/main/resources/META-INF/ejb-jar.xml?rev=642817&r1=642816&r2=642817&view=diff
==============================================================================
--- geronimo/sandbox/concurrent/concurrent-tests/concurrent-ejb/src/main/resources/META-INF/ejb-jar.xml (original)
+++ geronimo/sandbox/concurrent/concurrent-tests/concurrent-ejb/src/main/resources/META-INF/ejb-jar.xml Sun Mar 30 13:59:21 2008
@@ -34,6 +34,12 @@
         <env-entry-type>java.lang.String</env-entry-type>
         <env-entry-value>Hello</env-entry-value>
       </env-entry>
+
+      <ejb-local-ref>
+        <ejb-ref-name>ejb/Calculator</ejb-ref-name>
+        <ejb-ref-type>Session</ejb-ref-type>
+        <local>org.apache.geronimo.concurrent.test.CalculatorLocal</local>
+      </ejb-local-ref>
     </session>
 
   </enterprise-beans>

Modified: geronimo/sandbox/concurrent/concurrent-tests/concurrent-war/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/concurrent/concurrent-tests/concurrent-war/pom.xml?rev=642817&r1=642816&r2=642817&view=diff
==============================================================================
--- geronimo/sandbox/concurrent/concurrent-tests/concurrent-war/pom.xml (original)
+++ geronimo/sandbox/concurrent/concurrent-tests/concurrent-war/pom.xml Sun Mar 30 13:59:21 2008
@@ -70,6 +70,11 @@
             <scope>provided</scope>
         </dependency>
         <dependency>
+            <groupId>org.apache.geronimo.testsuite</groupId>
+            <artifactId>common-jar</artifactId>
+            <version>${version}</version>
+        </dependency>
+        <dependency>
             <groupId>org.testng</groupId>
             <artifactId>testng</artifactId>
             <classifier>jdk15</classifier>

Modified: geronimo/sandbox/concurrent/concurrent-tests/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/concurrent/concurrent-tests/pom.xml?rev=642817&r1=642816&r2=642817&view=diff
==============================================================================
--- geronimo/sandbox/concurrent/concurrent-tests/pom.xml (original)
+++ geronimo/sandbox/concurrent/concurrent-tests/pom.xml Sun Mar 30 13:59:21 2008
@@ -47,8 +47,11 @@
 
     <modules>
         <module>common-ejb</module>
+        <module>common-jar</module>
         <module>concurrent-war</module>
+        <module>concurrent-ejb</module>
         <module>concurrent-ear</module>
+        <module>concurrent-ejb-ear</module>
     </modules>
 
 </project>