Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOtavio Pontes2012-07-04 13:49:14 +0000
committerOtavio Pontes2012-07-04 21:15:15 +0000
commitd015932aff43dd7f23d2146ad636f1e24042e5ec (patch)
tree57717ebe90087d9dda82c7a68cddf89960d34a35 /perf/org.eclipse.linuxtools.perf.remote-feature/pom.xml
parentb4441f3a9ab3cc4098b070d01c7ce37978754f08 (diff)
downloadorg.eclipse.linuxtools-d015932aff43dd7f23d2146ad636f1e24042e5ec.tar.gz
org.eclipse.linuxtools-d015932aff43dd7f23d2146ad636f1e24042e5ec.tar.xz
org.eclipse.linuxtools-d015932aff43dd7f23d2146ad636f1e24042e5ec.zip
Perf: Creating a remote perf feature
We still need to split perf plugin in local perf and remote perf capabilities
Diffstat (limited to 'perf/org.eclipse.linuxtools.perf.remote-feature/pom.xml')
-rw-r--r--perf/org.eclipse.linuxtools.perf.remote-feature/pom.xml63
1 files changed, 63 insertions, 0 deletions
diff --git a/perf/org.eclipse.linuxtools.perf.remote-feature/pom.xml b/perf/org.eclipse.linuxtools.perf.remote-feature/pom.xml
new file mode 100644
index 0000000000..619558a896
--- /dev/null
+++ b/perf/org.eclipse.linuxtools.perf.remote-feature/pom.xml
@@ -0,0 +1,63 @@
+<?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-perf-parent</artifactId>
+ <groupId>org.eclipse.linuxtools.perf-parent</groupId>
+ <version>0.11.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>org.eclipse.linuxtools.perf.remote.feature</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+
+ <name>Linux Tools Remote Perf Integration Feature</name>
+
+ <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.perf.doc"/>
+ </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