summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-01-09 09:33:57 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-01-09 09:33:57 +0000
commit922a47f42b7ad9618d06ede9a7e2ba0ba783ff8d (patch)
tree46638033868a122c6be0dfc7facae72375f7e7e8 /sandbox/travelsample
parentc75af91ccca66dcaaecfa485f5a0965be57af356 (diff)
Fix pom.xml file to include correct dependencies
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@897394 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/travelsample')
-rw-r--r--sandbox/travelsample/services/smsgateway-ejb/pom.xml34
1 files changed, 28 insertions, 6 deletions
diff --git a/sandbox/travelsample/services/smsgateway-ejb/pom.xml b/sandbox/travelsample/services/smsgateway-ejb/pom.xml
index ca1d943456..cfdc22fae8 100644
--- a/sandbox/travelsample/services/smsgateway-ejb/pom.xml
+++ b/sandbox/travelsample/services/smsgateway-ejb/pom.xml
@@ -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>