summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample/services/smsgateway-ejb/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/travelsample/services/smsgateway-ejb/pom.xml')
-rw-r--r--sandbox/travelsample/services/smsgateway-ejb/pom.xml20
1 files changed, 18 insertions, 2 deletions
diff --git a/sandbox/travelsample/services/smsgateway-ejb/pom.xml b/sandbox/travelsample/services/smsgateway-ejb/pom.xml
index ac90abbd04..01d58240d4 100644
--- a/sandbox/travelsample/services/smsgateway-ejb/pom.xml
+++ b/sandbox/travelsample/services/smsgateway-ejb/pom.xml
@@ -46,18 +46,34 @@
<groupId>org.apache.openejb</groupId>
<artifactId>openejb-core</artifactId>
<version>3.1.1</version>
- <scope>test</scope>
+ <scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>openejb-ejbd</artifactId>
<version>3.1.1</version>
- <scope>test</scope>
+ <scope>runtime</scope>
</dependency>
</dependencies>
<build>
<finalName>${artifactId}</finalName>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <archive>
+ <manifest>
+ <addClasspath>true</addClasspath>
+ <classpathPrefix>../lib/</classpathPrefix>
+ <mainClass>scatours.smsgateway.SMSGatewayEJBServiceBootstrap</mainClass>
+ </manifest>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
</build>
</project> \ No newline at end of file