blob: d7e23a3877d7cc5dfb0595ef83fac9b4e37b65f2 [file] [log] [blame]
Thanh Ha5a2540b2013-07-05 10:18:54 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Copyright (c) 2012, 2013 Eclipse Foundation and others.
4 All rights reserved. This program and the accompanying materials
5 are made available under the terms of the Eclipse Distribution License v1.0
6 which accompanies this distribution, and is available at
7 http://www.eclipse.org/org/documents/edl-v10.php
8
9 Contributors:
10 Thanh Ha (Eclipse Foundation) - initial implementation
11-->
12
13<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
14 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
15 <modelVersion>4.0.0</modelVersion>
16 <parent>
17 <groupId>org.eclipse.webtools.webservices</groupId>
18 <artifactId>org.eclipse.webtools.webservices.jaxws</artifactId>
19 <version>3.6.0-SNAPSHOT</version>
20 <relativePath>../../</relativePath>
21 </parent>
22
23 <groupId>org.eclipse.webtools.webservices</groupId>
24 <artifactId>org.eclipse.jst.ws.cxf.feature</artifactId>
25 <version>1.1.100-SNAPSHOT</version>
26 <packaging>eclipse-feature</packaging>
27
28 <build>
29 <plugins>
30 <plugin>
31 <groupId>org.eclipse.tycho.extras</groupId>
32 <artifactId>tycho-source-feature-plugin</artifactId>
33 <version>${tycho-extras.version}</version>
34 <executions>
35 <execution>
36 <id>source-feature</id>
37 <phase>package</phase>
38 <goals>
39 <goal>source-feature</goal>
40 </goals>
41 <configuration>
42 <excludes>
43 <plugin id="javax.xml.bind"/>
44 <plugin id="javax.xml.stream"/>
45 <plugin id="javax.xml.ws"/>
46 </excludes>
47 </configuration>
48 </execution>
49 </executions>
50 </plugin>
51 <plugin>
52 <groupId>org.eclipse.tycho</groupId>
53 <artifactId>tycho-p2-plugin</artifactId>
54 <version>${tycho.version}</version>
55 <executions>
56 <execution>
57 <id>attach-p2-metadata</id>
58 <phase>package</phase>
59 <goals>
60 <goal>p2-metadata</goal>
61 </goals>
62 </execution>
63 </executions>
64 </plugin>
65 </plugins>
66 </build>
67</project>