Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'lttng/org.eclipse.linuxtools.lttng/pom.xml')
-rw-r--r--lttng/org.eclipse.linuxtools.lttng/pom.xml37
1 files changed, 37 insertions, 0 deletions
diff --git a/lttng/org.eclipse.linuxtools.lttng/pom.xml b/lttng/org.eclipse.linuxtools.lttng/pom.xml
index d86c8fc1b8..8daad09391 100644
--- a/lttng/org.eclipse.linuxtools.lttng/pom.xml
+++ b/lttng/org.eclipse.linuxtools.lttng/pom.xml
@@ -24,4 +24,41 @@
<name>Linux Tools LTTng (Linux Tracing Toolkit)</name>
<groupId>org.eclipse.linuxtools.lttng</groupId>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-source-feature-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>source-feature</id>
+ <phase>package</phase>
+ <goals>
+ <goal>source-feature</goal>
+ </goals>
+ <configuration>
+ <excludes>
+ <plugin id="org.eclipse.linuxtools.lttng.help"/>
+ </excludes>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-plugin</artifactId>
+ <version>${tycho-version}</version>
+ <executions>
+ <execution>
+ <id>attached-p2-metadata</id>
+ <phase>package</phase>
+ <goals>
+ <goal>p2-metadata</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</project>

Back to the top