You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by ri...@apache.org on 2006/10/12 23:33:04 UTC

svn commit: r463440 - /incubator/tuscany/java/samples/sca/helloworldws/pom.xml

Author: rineholt
Date: Thu Oct 12 14:33:03 2006
New Revision: 463440

URL: http://svn.apache.org/viewvc?view=rev&rev=463440
Log:
The current extension scdl is being loaded with the system scdl.  But the when the system loads it does not have access to extensions -- they get loaded later.
The work around for now is to have extension in web-inf/lib so they can be loaded.
This gets the application loaded. Have not been able to test it since I've heard the client is broken too. :-(

Modified:
    incubator/tuscany/java/samples/sca/helloworldws/pom.xml

Modified: incubator/tuscany/java/samples/sca/helloworldws/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/samples/sca/helloworldws/pom.xml?view=diff&rev=463440&r1=463439&r2=463440
==============================================================================
--- incubator/tuscany/java/samples/sca/helloworldws/pom.xml (original)
+++ incubator/tuscany/java/samples/sca/helloworldws/pom.xml Thu Oct 12 14:33:03 2006
@@ -62,26 +62,31 @@
             <version>${tuscanyVersion}</version>
             <scope>runtime</scope>
         </dependency>    
-        <!-- 
-        <dependency>
-            <groupId>org.apache.ws.commons.axiom</groupId>
-            <artifactId>axiom-impl</artifactId>
-            <version>1.1</version>
-            <scope>runtime</scope>
-        </dependency>
-        <dependency>
-            <groupId>wsdl4j</groupId>
-            <artifactId>wsdl4j</artifactId>
-            <version>1.5.2</version>
-            <scope>runtime</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.ws.commons.schema</groupId>
-            <artifactId>XmlSchema</artifactId>
-            <version>SNAPSHOT</version>
-            <scope>runtime</scope>
-        </dependency>        
-         -->    
+                        <dependency>
+                            <groupId>org.apache.tuscany.sca.services.bindings</groupId>
+                            <artifactId>axis2</artifactId>
+                            <version>${tuscanyVersion}</version>
+                             <scope>runtime</scope>
+                        </dependency>
+                        <dependency>
+                            <groupId>org.apache.tuscany.sca.services.idl</groupId>
+                            <artifactId>wsdl</artifactId>
+                            <version>${tuscanyVersion}</version>
+                             <scope>runtime</scope>
+                        </dependency>
+                        <dependency>
+                            <groupId>org.apache.tuscany.sca.services.databinding</groupId>
+                            <artifactId>databinding-axiom</artifactId>
+                            <version>${tuscanyVersion}</version>
+                            <scope>runtime</scope>
+                        </dependency>
+                        <dependency>
+                            <groupId>org.apache.tuscany.sca.services.databinding</groupId>
+                            <artifactId>databinding-sdo</artifactId>
+                            <version>${tuscanyVersion}</version>
+                            <scope>runtime</scope>
+                        </dependency>
+        
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
@@ -107,26 +112,6 @@
                 </executions>
                 <configuration>
                     <extensions>
-                        <dependency>
-                            <groupId>org.apache.tuscany.sca.services.bindings</groupId>
-                            <artifactId>axis2</artifactId>
-                            <version>${tuscanyVersion}</version>
-                        </dependency>
-                        <dependency>
-                            <groupId>org.apache.tuscany.sca.services.idl</groupId>
-                            <artifactId>wsdl</artifactId>
-                            <version>${tuscanyVersion}</version>
-                        </dependency>
-                        <dependency>
-                            <groupId>org.apache.tuscany.sca.services.databinding</groupId>
-                            <artifactId>databinding-axiom</artifactId>
-                            <version>${tuscanyVersion}</version>
-                        </dependency>
-                        <dependency>
-                            <groupId>org.apache.tuscany.sca.services.databinding</groupId>
-                            <artifactId>databinding-sdo</artifactId>
-                            <version>${tuscanyVersion}</version>
-                        </dependency>
                     </extensions>
                 </configuration>
             </plugin>



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org