You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by va...@apache.org on 2009/04/03 18:52:57 UTC

svn commit: r761729 - in /tuscany/branches/sca-java-1.x: itest/contribution-jee/pom.xml itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/ContributionServiceTestCase.java modules/contribution-jee-impl/pom.xml

Author: vamsic007
Date: Fri Apr  3 16:52:56 2009
New Revision: 761729

URL: http://svn.apache.org/viewvc?rev=761729&view=rev
Log:
TUSCANY-2935 Integration tests for Java EE contribution processing
 o Adding more needed dependencies
 o Not enabling the module contribution-jee in itests since it will required OPENEJB-1005 be resolved for the tests to run successfully on Windows.

Modified:
    tuscany/branches/sca-java-1.x/itest/contribution-jee/pom.xml
    tuscany/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/ContributionServiceTestCase.java
    tuscany/branches/sca-java-1.x/modules/contribution-jee-impl/pom.xml

Modified: tuscany/branches/sca-java-1.x/itest/contribution-jee/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.x/itest/contribution-jee/pom.xml?rev=761729&r1=761728&r2=761729&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.x/itest/contribution-jee/pom.xml (original)
+++ tuscany/branches/sca-java-1.x/itest/contribution-jee/pom.xml Fri Apr  3 16:52:56 2009
@@ -62,6 +62,12 @@
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-host-webapp</artifactId>
+            <version>1.5-SNAPSHOT</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-ejb</artifactId>
             <version>1.5-SNAPSHOT</version>
         </dependency>
@@ -94,5 +100,11 @@
             <artifactId>geronimo-jsp_2.1_spec</artifactId>
             <version>1.0.1</version>
         </dependency>
+
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-el_1.0_spec</artifactId>
+            <version>1.0.1</version>
+        </dependency>
     </dependencies>
 </project>

Modified: tuscany/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/ContributionServiceTestCase.java
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/ContributionServiceTestCase.java?rev=761729&r1=761728&r2=761729&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/ContributionServiceTestCase.java (original)
+++ tuscany/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/ContributionServiceTestCase.java Fri Apr  3 16:52:56 2009
@@ -231,7 +231,6 @@
      * This method test EAR as a contribution.
      */
     @Test
-    @Ignore
     public void testContributeEAR() throws Exception {
         URL contributionLocation = getClass().getResource(EAR_CONTRIBUTION);
         String contributionId = CONTRIBUTION_001_ID;

Modified: tuscany/branches/sca-java-1.x/modules/contribution-jee-impl/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.x/modules/contribution-jee-impl/pom.xml?rev=761729&r1=761728&r2=761729&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.x/modules/contribution-jee-impl/pom.xml (original)
+++ tuscany/branches/sca-java-1.x/modules/contribution-jee-impl/pom.xml Fri Apr  3 16:52:56 2009
@@ -66,13 +66,13 @@
         <dependency>
             <groupId>org.apache.openejb</groupId>
             <artifactId>openejb-core</artifactId>
-            <version>3.0</version>
+            <version>3.0.1</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.openejb</groupId>
             <artifactId>openejb-jee</artifactId>
-            <version>3.0</version>
+            <version>3.0.1</version>
         </dependency>
 
         <dependency>