Skip to content

Commit 1cf57cf

Browse files
committed
Upgraded sample to maven
1 parent b77bd02 commit 1cf57cf

File tree

3 files changed

+60
-0
lines changed

3 files changed

+60
-0
lines changed

samples/airline/client/jms/pom.xml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
<parent>
4+
<artifactId>airline-client</artifactId>
5+
<groupId>org.springframework.ws</groupId>
6+
<version>2.0.0-M1-SNAPSHOT</version>
7+
<relativePath>../pom.xml</relativePath>
8+
</parent>
9+
<modelVersion>4.0.0</modelVersion>
10+
<artifactId>airline-jms-client</artifactId>
11+
<packaging>jar</packaging>
12+
<name>Spring WS Airline Sample - JMS Client</name>
13+
<profiles>
14+
<profile>
15+
<id>jdk15</id>
16+
<activation>
17+
<jdk>!1.6</jdk>
18+
</activation>
19+
<dependencies>
20+
<dependency>
21+
<groupId>javax.xml.soap</groupId>
22+
<artifactId>saaj-api</artifactId>
23+
<scope>runtime</scope>
24+
</dependency>
25+
</dependencies>
26+
</profile>
27+
</profiles>
28+
<build>
29+
<plugins>
30+
<plugin>
31+
<groupId>org.codehaus.mojo</groupId>
32+
<artifactId>exec-maven-plugin</artifactId>
33+
<executions>
34+
<execution>
35+
<goals>
36+
<goal>java</goal>
37+
</goals>
38+
</execution>
39+
</executions>
40+
<configuration>
41+
<mainClass>org.springframework.ws.samples.airline.client.jms.JmsClient</mainClass>
42+
</configuration>
43+
</plugin>
44+
</plugins>
45+
</build>
46+
<dependencies>
47+
<dependency>
48+
<groupId>javax.jms</groupId>
49+
<artifactId>jms</artifactId>
50+
</dependency>
51+
<dependency>
52+
<groupId>org.springframework.ws</groupId>
53+
<artifactId>spring-ws-support</artifactId>
54+
</dependency>
55+
<dependency>
56+
<groupId>org.apache.activemq</groupId>
57+
<artifactId>activemq-core</artifactId>
58+
</dependency>
59+
</dependencies>
60+
</project>

0 commit comments

Comments
 (0)