summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample/services/smsgateway-ejb-service/pom.xml
diff options
context:
space:
mode:
authormcombellack <mcombellack@13f79535-47bb-0310-9956-ffa450edef68>2009-06-15 21:50:54 +0000
committermcombellack <mcombellack@13f79535-47bb-0310-9956-ffa450edef68>2009-06-15 21:50:54 +0000
commit6ebf87e146b93c4a651da64be78ce88a09cea8c3 (patch)
treee77197e21f034ec7890c9d4bd8c311acd057deb1 /sandbox/travelsample/services/smsgateway-ejb-service/pom.xml
parent8f595a3113276b21a058e3c8a87389a0f7a907a3 (diff)
Added an implementation of the SMS gateway that exposes its services as an EJB
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@785000 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/travelsample/services/smsgateway-ejb-service/pom.xml')
-rw-r--r--sandbox/travelsample/services/smsgateway-ejb-service/pom.xml64
1 files changed, 64 insertions, 0 deletions
diff --git a/sandbox/travelsample/services/smsgateway-ejb-service/pom.xml b/sandbox/travelsample/services/smsgateway-ejb-service/pom.xml
new file mode 100644
index 0000000000..1ed9425e57
--- /dev/null
+++ b/sandbox/travelsample/services/smsgateway-ejb-service/pom.xml
@@ -0,0 +1,64 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-sca</artifactId>
+ <version>1.6-SNAPSHOT</version>
+ <!--relativePath>../../pom.xml</relativePath-->
+ </parent><version>1.0-SNAPSHOT</version>
+ <artifactId>smsgateway-ejb-service</artifactId>
+ <name>Apache Tuscany SCA Tours SMS Gateway EJB Service</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.openejb</groupId>
+ <artifactId>javaee-api</artifactId>
+ <version>5.0-2</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.5</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.openejb</groupId>
+ <artifactId>openejb-core</artifactId>
+ <version>3.1.1</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.openejb</groupId>
+ <artifactId>openejb-ejbd</artifactId>
+ <version>3.1.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <finalName>${artifactId}</finalName>
+ </build>
+</project>