blob: 9786bacf534b70b626f85b764d3ca7bc40472e6c [file] [log] [blame]
dacarver6582ede2010-06-26 01:19:56 +00001<?xml version="1.0" encoding="UTF-8"?>
Thanh Ha3888f3d2013-07-05 15:40:37 -04002<!--
3 Copyright (c) 2010, 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 David Carver - Initial implementation
11 Jesper Moller - Initial implementation
12 Thanh Ha (Eclipse Foundation) - CBI Webtools implementation
13-->
dacarver6582ede2010-06-26 01:19:56 +000014
Thanh Ha3888f3d2013-07-05 15:40:37 -040015<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"
16 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
17 <modelVersion>4.0.0</modelVersion>
18 <parent>
19 <groupId>org.eclipse.webtools.sourceediting</groupId>
20 <artifactId>org.eclipse.webtools.sourceediting.xpath</artifactId>
21 <version>3.5.0-SNAPSHOT</version>
22 <relativePath>../../</relativePath>
23 </parent>
dacarver6582ede2010-06-26 01:19:56 +000024
Thanh Ha3888f3d2013-07-05 15:40:37 -040025 <groupId>org.eclipse.webtools.sourceediting</groupId>
26 <artifactId>org.eclipse.wst.xml.xpath2.processor.feature</artifactId>
27 <version>2.0.200-SNAPSHOT</version>
28 <packaging>eclipse-feature</packaging>
29 <name>PsychoPath XPath 2.0 Processor Feature</name>
30
31 <build>
32 <plugins>
33 <plugin>
34 <groupId>org.eclipse.tycho.extras</groupId>
35 <artifactId>tycho-source-feature-plugin</artifactId>
36 <version>${tycho-extras.version}</version>
37 <executions>
38 <execution>
39 <id>source-feature</id>
40 <phase>package</phase>
41 <goals>
42 <goal>source-feature</goal>
43 </goals>
44 <configuration>
45 <excludes>
46 <plugin id="org.apache.xerces"/>
47 <plugin id="java_cup.runtime"/>
48 </excludes>
49 </configuration>
50 </execution>
51 </executions>
52 </plugin>
53 <plugin>
54 <groupId>org.eclipse.tycho</groupId>
55 <artifactId>tycho-p2-plugin</artifactId>
56 <version>${tycho.version}</version>
57 <executions>
58 <execution>
59 <id>attach-p2-metadata</id>
60 <phase>package</phase>
61 <goals>
62 <goal>p2-metadata</goal>
63 </goals>
64 </execution>
65 </executions>
66 </plugin>
67 </plugins>
68 </build>
dacarver6582ede2010-06-26 01:19:56 +000069</project>