|
1 | 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" |
3 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | | - <modelVersion>4.0.0</modelVersion> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
5 | 6 |
|
6 | | - <parent> |
7 | | - <groupId>org.springframework.ws</groupId> |
8 | | - <artifactId>spring-ws-samples</artifactId> |
9 | | - <version>2.0.0-SNAPSHOT</version> |
10 | | - <relativePath>../../../</relativePath> <!-- lookup parent from repository --> |
11 | | - </parent> |
| 7 | + <parent> |
| 8 | + <groupId>org.springframework.ws</groupId> |
| 9 | + <artifactId>spring-ws-samples</artifactId> |
| 10 | + <version>2.0.0-SNAPSHOT</version> |
| 11 | + <relativePath>../../../</relativePath> <!-- lookup parent from repository --> |
| 12 | + </parent> |
12 | 13 |
|
13 | | - <artifactId>airline-client-jax-ws</artifactId> |
14 | | - <version>0.0.1-SNAPSHOT</version> |
15 | | - <name>Spring Web Services Samples - Airline - Client - JAX-WS</name> |
16 | | - <description>Demo project for Spring Web Services</description> |
| 14 | + <artifactId>airline-client-jax-ws</artifactId> |
| 15 | + <version>0.0.1-SNAPSHOT</version> |
| 16 | + <name>Spring Web Services Samples - Airline - Client - JAX-WS</name> |
| 17 | + <description>Demo project for Spring Web Services</description> |
17 | 18 |
|
18 | | - <properties> |
19 | | - <jax-ws.version>2.1.7</jax-ws.version> |
20 | | - <sourcesDir>${project.basedir}/target/generated-sources/jaxws</sourcesDir> |
21 | | - <classesDir>${project.basedir}/target/classes</classesDir> |
22 | | - <wsdl>${project.basedir}/../airline.wsdl</wsdl> |
23 | | - </properties> |
| 19 | + <properties> |
| 20 | + <jax-ws.version>2.1.7</jax-ws.version> |
| 21 | + <sourcesDir>${project.basedir}/target/generated-sources/jaxws</sourcesDir> |
| 22 | + <classesDir>${project.basedir}/target/classes</classesDir> |
| 23 | + <wsdl>${project.basedir}/../airline.wsdl</wsdl> |
| 24 | + </properties> |
24 | 25 |
|
25 | | - <dependencies> |
| 26 | + <dependencies> |
26 | 27 |
|
27 | | - <dependency> |
28 | | - <groupId>org.springframework.ws</groupId> |
29 | | - <artifactId>spring-ws-core</artifactId> |
30 | | - </dependency> |
| 28 | + <dependency> |
| 29 | + <groupId>org.springframework.ws</groupId> |
| 30 | + <artifactId>spring-ws-core</artifactId> |
| 31 | + </dependency> |
31 | 32 |
|
32 | | - <dependency> |
33 | | - <groupId>com.sun.xml.ws</groupId> |
34 | | - <artifactId>jaxws-tools</artifactId> |
35 | | - <version>${jaxws-tools.version}</version> |
36 | | - </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>com.sun.xml.ws</groupId> |
| 35 | + <artifactId>jaxws-tools</artifactId> |
| 36 | + <version>${jaxws-tools.version}</version> |
| 37 | + </dependency> |
37 | 38 |
|
38 | | - <dependency> |
39 | | - <groupId>jakarta.jws</groupId> |
40 | | - <artifactId>jakarta.jws-api</artifactId> |
41 | | - <version>${jws-api.version}</version> |
42 | | - </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>jakarta.jws</groupId> |
| 41 | + <artifactId>jakarta.jws-api</artifactId> |
| 42 | + <version>${jws-api.version}</version> |
| 43 | + </dependency> |
43 | 44 |
|
44 | | - </dependencies> |
| 45 | + </dependencies> |
45 | 46 |
|
46 | | - <build> |
| 47 | + <build> |
47 | 48 |
|
48 | | - <plugins> |
49 | | - <plugin> |
50 | | - <groupId>com.sun.xml.ws</groupId> |
51 | | - <artifactId>jaxws-maven-plugin</artifactId> |
52 | | - <version>3.0.0</version> |
53 | | - <executions> |
54 | | - <execution> |
55 | | - <goals> |
56 | | - <goal>wsimport</goal> |
57 | | - </goals> |
58 | | - </execution> |
59 | | - </executions> |
60 | | - <configuration> |
61 | | - <!-- The name of your generated source package --> |
62 | | - <wsdlFiles>${project.basedir}/../airline.wsdl</wsdlFiles> |
63 | | - <packageName>org.springframework.ws.samples.airline.client.jaxws</packageName> |
64 | | - <sourceDestDir>${sourcesDir}</sourceDestDir> |
65 | | - <destDir>${classesDir}</destDir> |
66 | | - <extension>true</extension> |
67 | | - </configuration> |
68 | | - </plugin> |
69 | | - <plugin> |
70 | | - <groupId>org.codehaus.mojo</groupId> |
71 | | - <artifactId>build-helper-maven-plugin</artifactId> |
72 | | - <version>1.1</version> |
73 | | - <executions> |
74 | | - <execution> |
75 | | - <id>add-source</id> |
76 | | - <phase>process-sources</phase> |
77 | | - <goals> |
78 | | - <goal>add-source</goal> |
79 | | - </goals> |
80 | | - <configuration> |
81 | | - <sources> |
82 | | - <source>${sourcesDir}</source> |
83 | | - </sources> |
84 | | - </configuration> |
85 | | - </execution> |
86 | | - </executions> |
87 | | - </plugin> |
88 | | - </plugins> |
| 49 | + <plugins> |
| 50 | + <plugin> |
| 51 | + <groupId>com.sun.xml.ws</groupId> |
| 52 | + <artifactId>jaxws-maven-plugin</artifactId> |
| 53 | + <version>3.0.0</version> |
| 54 | + <executions> |
| 55 | + <execution> |
| 56 | + <goals> |
| 57 | + <goal>wsimport</goal> |
| 58 | + </goals> |
| 59 | + </execution> |
| 60 | + </executions> |
| 61 | + <configuration> |
| 62 | + <!-- The name of your generated source package --> |
| 63 | + <wsdlFiles>${project.basedir}/../airline.wsdl</wsdlFiles> |
| 64 | + <packageName>org.springframework.ws.samples.airline.client.jaxws</packageName> |
| 65 | + <sourceDestDir>${sourcesDir}</sourceDestDir> |
| 66 | + <destDir>${classesDir}</destDir> |
| 67 | + <extension>true</extension> |
| 68 | + </configuration> |
| 69 | + </plugin> |
| 70 | + <plugin> |
| 71 | + <groupId>org.codehaus.mojo</groupId> |
| 72 | + <artifactId>build-helper-maven-plugin</artifactId> |
| 73 | + <version>1.1</version> |
| 74 | + <executions> |
| 75 | + <execution> |
| 76 | + <id>add-source</id> |
| 77 | + <phase>process-sources</phase> |
| 78 | + <goals> |
| 79 | + <goal>add-source</goal> |
| 80 | + </goals> |
| 81 | + <configuration> |
| 82 | + <sources> |
| 83 | + <source>${sourcesDir}</source> |
| 84 | + </sources> |
| 85 | + </configuration> |
| 86 | + </execution> |
| 87 | + </executions> |
| 88 | + </plugin> |
| 89 | + </plugins> |
89 | 90 |
|
90 | | - </build> |
| 91 | + </build> |
91 | 92 |
|
92 | 93 | </project> |
0 commit comments