comparison client/pom.xml @ 7:39c4892724ae

new version with maven modules for service and client.
author casties
date Thu, 16 Jun 2011 17:33:06 +0200
parents
children ab4794707336
comparison
equal deleted inserted replaced
6:913bc132ed96 7:39c4892724ae
1 <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/xsd/maven-4.0.0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <artifactId>digilibservice</artifactId>
5 <groupId>info.textgrid</groupId>
6 <version>1.0-SNAPSHOT</version>
7 </parent>
8 <groupId>info.textgrid</groupId>
9 <artifactId>digilibservice-client</artifactId>
10 <version>1.0-SNAPSHOT</version>
11 <packaging>jar</packaging>
12 <dependencies>
13 <dependency>
14 <groupId>org.apache.cxf</groupId>
15 <artifactId>cxf</artifactId>
16 <version>${cxf.version}</version>
17 <type>pom</type>
18 </dependency>
19 </dependencies>
20 <build>
21 <!-- <finalName>digilibservice</finalName> -->
22 <plugins>
23 <plugin>
24 <groupId>org.apache.cxf</groupId>
25 <artifactId>cxf-codegen-plugin</artifactId>
26 <version>${cxf.version}</version>
27 <executions>
28 <execution>
29 <id>generate-digilibservice-client</id>
30 <phase>generate-sources</phase>
31 <configuration>
32 <wsdlOptions>
33 <wsdlOption>
34 <wsdl>../service/src/main/webapp/WEB-INF/DigilibService.wsdl</wsdl>
35 </wsdlOption>
36 </wsdlOptions>
37 </configuration>
38 <goals>
39 <goal>wsdl2java</goal>
40 </goals>
41 </execution>
42 </executions>
43 </plugin>
44 </plugins>
45 </build>
46 </project>