Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandre Montplaisir2014-04-08 21:56:38 +0000
committerAlexandre Montplaisir2014-04-16 22:34:48 +0000
commit91e7f94672f914dd2db6ad69451dc346628bbc41 (patch)
treed4f70437a38176c26aece5fbc3a43b0bd3f650a4 /org.eclipse.linuxtools.tmf.ctf/pom.xml
parente693075df9ab61d18493abaf9db9726efc254c17 (diff)
downloadorg.eclipse.tracecompass-91e7f94672f914dd2db6ad69451dc346628bbc41.tar.gz
org.eclipse.tracecompass-91e7f94672f914dd2db6ad69451dc346628bbc41.tar.xz
org.eclipse.tracecompass-91e7f94672f914dd2db6ad69451dc346628bbc41.zip
tmf: Split "CTF adaptor" into separate plugins/feature
This allows using TMF without CTF, for more flexibility and better separation of dependencies. Change-Id: I5d84ebcf92014601eb293b95085ef1a046e7188e Signed-off-by: Alexandre Montplaisir <alexmonthy@voxpopuli.im> Reviewed-on: https://git.eclipse.org/r/24752 Tested-by: Hudson CI
Diffstat (limited to 'org.eclipse.linuxtools.tmf.ctf/pom.xml')
-rw-r--r--org.eclipse.linuxtools.tmf.ctf/pom.xml59
1 files changed, 59 insertions, 0 deletions
diff --git a/org.eclipse.linuxtools.tmf.ctf/pom.xml b/org.eclipse.linuxtools.tmf.ctf/pom.xml
new file mode 100644
index 0000000000..c8ba755ab8
--- /dev/null
+++ b/org.eclipse.linuxtools.tmf.ctf/pom.xml
@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (C) 2011, Red Hat, Inc.
+
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/epl-v10.html
+-->
+<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"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <artifactId>linuxtools-lttng-parent</artifactId>
+ <groupId>org.eclipse.linuxtools.lttng</groupId>
+ <version>3.0.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>org.eclipse.linuxtools.tmf.ctf</artifactId>
+ <version>3.0.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+
+ <name>CTF support for TMF Feature</name>
+
+ <groupId>org.eclipse.linuxtools.tmf</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>
+ </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