-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwsdl2java-pom.xml
More file actions
36 lines (34 loc) · 816 Bytes
/
wsdl2java-pom.xml
File metadata and controls
36 lines (34 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<properties>
<cxf.version>3.0.0-milestone1</cxf.version>
<outputPath>src/main/java</outputPath>
<cmd.wsdlPath>${wsdlPath}</cmd.wsdlPath>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${cxf.version}</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<goals>
<goal>wsdl2java</goal>
</goals>
<configuration>
<sourceRoot>${outputPath}</sourceRoot>
<wsdlOptions>
<wsdlOption>
<wsdl>${cmd.wsdlPath}</wsdl>
<extraargs>
<extraarg>-client</extraarg>
</extraargs>
</wsdlOption>
</wsdlOptions>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>