File tree Expand file tree Collapse file tree 3 files changed +60
-0
lines changed
samples/airline/client/jms
java/org/springframework/ws/samples/airline/client/jms
resources/org/springframework/ws/samples/airline/client/jms Expand file tree Collapse file tree 3 files changed +60
-0
lines changed Original file line number Diff line number Diff line change 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 >
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments