Change versions to 0.1.0
[deliverable/tracecompass.git] / org.eclipse.tracecompass.rcp / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2014 Ericsson
4
5 All rights reserved. This program and the accompanying materials
6 are made available under the terms of the Eclipse Public License v1.0
7 which accompanies this distribution, and is available at
8 http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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"
11 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
12 <modelVersion>4.0.0</modelVersion>
13
14 <parent>
15 <artifactId>org.eclipse.tracecompass</artifactId>
16 <groupId>org.eclipse.tracecompass</groupId>
17 <version>0.1.0-SNAPSHOT</version>
18 </parent>
19
20 <artifactId>org.eclipse.tracecompass.rcp</artifactId>
21 <version>0.1.0-SNAPSHOT</version>
22 <groupId>org.eclipse.tracecompass</groupId>
23 <packaging>eclipse-feature</packaging>
24
25 <name>Trace Compass RCP Feature</name>
26
27 <build>
28 <plugins>
29 <plugin>
30 <groupId>org.eclipse.tycho.extras</groupId>
31 <artifactId>tycho-source-feature-plugin</artifactId>
32 <executions>
33 <execution>
34 <id>source-feature</id>
35 <phase>package</phase>
36 <goals>
37 <goal>source-feature</goal>
38 </goals>
39 <configuration>
40 <excludes>
41 <plugin id="org.eclipse.cdt.core"/>
42 <plugin id="org.eclipse.cdt.core.native"/>
43 <plugin id="org.eclipse.core.runtime.compatibility.auth"/>
44 <plugin id="org.eclipse.swt"/>
45 <plugin id="org.eclipse.swt.wpf.win32.x86"/>
46 <plugin id="org.eclipse.swt.gtk.solaris.sparc"/>
47 <plugin id="org.eclipse.swt.gtk.solaris.x86"/>
48 <plugin id="org.eclipse.swt.gtk.linux.ppc"/>
49 <plugin id="org.eclipse.swt.cocoa.macosx"/>
50 <plugin id="org.eclipse.equinox.launcher.gtk.solaris.sparc"/>
51 <plugin id="org.eclipse.equinox.launcher.gtk.linux.x86"/>
52 <plugin id="org.eclipse.equinox.launcher.gtk.linux.x86_64"/>
53 <plugin id="org.eclipse.equinox.launcher.win32.win32.x86"/>
54 <plugin id="org.eclipse.ui.cocoa"/>
55 <plugin id="org.eclipse.core.filesystem.linux.x86"/>
56 <plugin id="org.eclipse.core.filesystem.linux.x86_64"/>
57 <plugin id="org.eclipse.core.filesystem.solaris.sparc"/>
58 <plugin id="org.eclipse.core.filesystem.macosx"/>
59 <plugin id="org.eclipse.core.filesystem.win32.x86"/>
60 <plugin id="org.eclipse.core.resources.win32.x86"/>
61 <plugin id="org.eclipse.core.filesystem.linux.ppc"/>
62 <plugin id="org.eclipse.equinox.launcher.gtk.linux.ppc"/>
63 <plugin id="org.eclipse.equinox.launcher.win32.win32.x86_64"/>
64 <plugin id="org.eclipse.equinox.launcher.wpf.win32.x86"/>
65 <plugin id="org.eclipse.equinox.launcher.cocoa.macosx"/>
66 <plugin id="org.eclipse.equinox.launcher.cocoa.macosx.x86_64"/>
67 <plugin id="org.eclipse.core.net.win32.x86"/>
68 <plugin id="org.eclipse.core.net.linux.x86"/>
69 <plugin id="org.eclipse.tracecompass.tracing.rcp.help"/>
70 <plugin id="org.sat4j.core"/>
71 <plugin id="org.sat4j.pb"/>
72 <plugin id="org.swtchart"/>
73 <plugin id="com.google.guava"/>
74 </excludes>
75 </configuration>
76 </execution>
77 </executions>
78 </plugin>
79 <plugin>
80 <groupId>org.eclipse.tycho</groupId>
81 <artifactId>tycho-p2-plugin</artifactId>
82 <version>${tycho-version}</version>
83 <executions>
84 <execution>
85 <id>attached-p2-metadata</id>
86 <phase>package</phase>
87 <goals>
88 <goal>p2-metadata</goal>
89 </goals>
90 </execution>
91 </executions>
92 </plugin>
93 </plugins>
94 </build>
95
96 </project>
This page took 0.032665 seconds and 5 git commands to generate.