You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by na...@apache.org on 2010/01/09 10:33:58 UTC

svn commit: r897394 - /tuscany/sandbox/travelsample/services/smsgateway-ejb/pom.xml

Author: nash
Date: Sat Jan  9 09:33:57 2010
New Revision: 897394

URL: http://svn.apache.org/viewvc?rev=897394&view=rev
Log:
Fix pom.xml file to include correct dependencies

Modified:
    tuscany/sandbox/travelsample/services/smsgateway-ejb/pom.xml

Modified: tuscany/sandbox/travelsample/services/smsgateway-ejb/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/services/smsgateway-ejb/pom.xml?rev=897394&r1=897393&r2=897394&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/services/smsgateway-ejb/pom.xml (original)
+++ tuscany/sandbox/travelsample/services/smsgateway-ejb/pom.xml Sat Jan  9 09:33:57 2010
@@ -33,13 +33,35 @@
             <groupId>org.apache.openejb</groupId>
             <artifactId>javaee-api</artifactId>
             <version>5.0-2</version>
-            <scope>provided</scope>
         </dependency>
+
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>1.2.13</version>
+            <scope>runtime</scope>
+        </dependency>
+
+         <dependency>
+             <groupId>wsdl4j</groupId>
+             <artifactId>wsdl4j</artifactId>
+             <version>1.6.2</version>
+         </dependency>
+
         <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>4.5</version>
-            <scope>test</scope>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>1.1.1</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>javax.servlet</groupId>
+                    <artifactId>servlet-api</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>avalon-framework</groupId>
+                    <artifactId>avalon-framework</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>
@@ -69,7 +91,7 @@
                         <manifest>
                             <addClasspath>true</addClasspath>
                             <classpathPrefix>../lib/</classpathPrefix>
-                            <mainClass>scatours.smsgateway.SMSGatewayEJBServiceBootstrap</mainClass>
+                            <mainClass>com.tuscanyscatours.smsgateway.SMSGatewayEJBServiceBootstrap</mainClass>
                         </manifest>
                     </archive>
                 </configuration>