| author | Daniel Henrique Barboza | 2011-11-24 14:11:24 (EST) |
|---|---|---|
| committer | Otavio Pontes | 2011-12-01 12:23:30 (EST) |
| commit | bbad9cb2d4b95fe1eb80635380fb6ddae4021b27 (patch) (side-by-side diff) | |
| tree | 33df92777fa2588c8e82abd91094902d3a4d8e7b | |
| parent | bec90af73a494aceeb17256235b847b9d851480f (diff) | |
| download | org.eclipse.linuxtools-bbad9cb2d4b95fe1eb80635380fb6ddae4021b27.zip org.eclipse.linuxtools-bbad9cb2d4b95fe1eb80635380fb6ddae4021b27.tar.gz org.eclipse.linuxtools-bbad9cb2d4b95fe1eb80635380fb6ddae4021b27.tar.bz2 | |
Adding pom.xml files to enable Perf build.
| -rw-r--r-- | perf/org.eclipse.linuxtools.perf-feature/feature.xml | 4 | ||||
| -rw-r--r-- | perf/org.eclipse.linuxtools.perf-feature/pom.xml | 44 | ||||
| -rw-r--r-- | perf/org.eclipse.linuxtools.perf.tests/META-INF/MANIFEST.MF | 6 | ||||
| -rw-r--r-- | perf/org.eclipse.linuxtools.perf.tests/pom.xml | 44 | ||||
| -rw-r--r-- | perf/org.eclipse.linuxtools.perf/META-INF/MANIFEST.MF | 2 | ||||
| -rw-r--r-- | perf/org.eclipse.linuxtools.perf/pom.xml | 44 | ||||
| -rw-r--r-- | perf/pom.xml | 66 | ||||
| -rw-r--r-- | pom.xml | 1 | ||||
| -rw-r--r-- | releng/org.eclipse.linuxtools.releng-site/category.xml | 3 |
9 files changed, 208 insertions, 6 deletions
diff --git a/perf/org.eclipse.linuxtools.perf-feature/feature.xml b/perf/org.eclipse.linuxtools.perf-feature/feature.xml index f37b5b6..b7f5dc2 100644 --- a/perf/org.eclipse.linuxtools.perf-feature/feature.xml +++ b/perf/org.eclipse.linuxtools.perf-feature/feature.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="UTF-8"?> <feature - id="org.eclipse.linuxtools.perf" + id="org.eclipse.linuxtools.perf-feature" label="Perf-feature" - version="1.0.0.qualifier"> + version="0.10.0.qualifier"> <description url="http://www.eclipse.org/linuxtools/"> Plugins to bring Perf-based profiling into the workbench. diff --git a/perf/org.eclipse.linuxtools.perf-feature/pom.xml b/perf/org.eclipse.linuxtools.perf-feature/pom.xml new file mode 100644 index 0000000..7037eee --- a/dev/null +++ b/perf/org.eclipse.linuxtools.perf-feature/pom.xml @@ -0,0 +1,44 @@ +<?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.10.0-SNAPSHOT</version> + </parent> + + <artifactId>org.eclipse.linuxtools.perf-feature</artifactId> + <version>0.10.0-SNAPSHOT</version> + <packaging>eclipse-feature</packaging> + + <name>Linux Tools Perf Integration Feature</name> + + <build> + <!-- workaround for https://issues.sonatype.org/browse/TYCHO-168 --> + <resources> + <resource> + <directory>src</directory> + <excludes> + <exclude>**/*.java</exclude> + </excludes> + </resource> + </resources> + <plugins> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>tycho-source-plugin</artifactId> + </plugin> + </plugins> + </build> + +</project> diff --git a/perf/org.eclipse.linuxtools.perf.tests/META-INF/MANIFEST.MF b/perf/org.eclipse.linuxtools.perf.tests/META-INF/MANIFEST.MF index 61a0643..1cc8b3f 100644 --- a/perf/org.eclipse.linuxtools.perf.tests/META-INF/MANIFEST.MF +++ b/perf/org.eclipse.linuxtools.perf.tests/META-INF/MANIFEST.MF @@ -2,14 +2,14 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Tests Bundle-SymbolicName: org.eclipse.linuxtools.perf.tests -Bundle-Version: 1.0.0.qualifier +Bundle-Version: 0.10.0.qualifier Bundle-Activator: org.eclipse.linuxtools.perf.tests.TestPlugin Require-Bundle: org.eclipse.ui, org.eclipse.core.runtime, org.junit;bundle-version="4.8.1", org.eclipse.debug.core;bundle-version="3.7.0", - org.eclipse.linuxtools.perf;bundle-version="1.0.0", - org.eclipse.cdt.core;bundle-version="5.4.0", + org.eclipse.linuxtools.perf, + org.eclipse.cdt.core, org.eclipse.debug.ui;bundle-version="3.7.0" Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Bundle-ActivationPolicy: lazy diff --git a/perf/org.eclipse.linuxtools.perf.tests/pom.xml b/perf/org.eclipse.linuxtools.perf.tests/pom.xml new file mode 100644 index 0000000..beaa3bc --- a/dev/null +++ b/perf/org.eclipse.linuxtools.perf.tests/pom.xml @@ -0,0 +1,44 @@ +<?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.10.0-SNAPSHOT</version> + </parent> + + <artifactId>org.eclipse.linuxtools.perf.tests</artifactId> + <version>0.10.0-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> + + <name>Linux Tools Perf Tests Plug-in</name> + + <build> + <!-- workaround for https://issues.sonatype.org/browse/TYCHO-168 --> + <resources> + <resource> + <directory>src</directory> + <excludes> + <exclude>**/*.java</exclude> + </excludes> + </resource> + </resources> + <plugins> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>tycho-source-plugin</artifactId> + </plugin> + </plugins> + </build> + +</project> diff --git a/perf/org.eclipse.linuxtools.perf/META-INF/MANIFEST.MF b/perf/org.eclipse.linuxtools.perf/META-INF/MANIFEST.MF index eaacfe1..a031020 100644 --- a/perf/org.eclipse.linuxtools.perf/META-INF/MANIFEST.MF +++ b/perf/org.eclipse.linuxtools.perf/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Perf Bundle-SymbolicName: org.eclipse.linuxtools.perf; singleton:=true -Bundle-Version: 1.0.0.qualifier +Bundle-Version: 0.10.0.qualifier Bundle-Activator: org.eclipse.linuxtools.perf.PerfPlugin Require-Bundle: org.eclipse.ui, org.eclipse.cdt.core;bundle-version="5.1.2", diff --git a/perf/org.eclipse.linuxtools.perf/pom.xml b/perf/org.eclipse.linuxtools.perf/pom.xml new file mode 100644 index 0000000..943e98f --- a/dev/null +++ b/perf/org.eclipse.linuxtools.perf/pom.xml @@ -0,0 +1,44 @@ +<?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.10.0-SNAPSHOT</version> + </parent> + + <artifactId>org.eclipse.linuxtools.perf</artifactId> + <version>0.10.0-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> + + <name>Linux Tools Perf Plug-in</name> + + <build> + <!-- workaround for https://issues.sonatype.org/browse/TYCHO-168 --> + <resources> + <resource> + <directory>src</directory> + <excludes> + <exclude>**/*.java</exclude> + </excludes> + </resource> + </resources> + <plugins> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>tycho-source-plugin</artifactId> + </plugin> + </plugins> + </build> + +</project> diff --git a/perf/pom.xml b/perf/pom.xml new file mode 100644 index 0000000..1d6b59d --- a/dev/null +++ b/perf/pom.xml @@ -0,0 +1,66 @@ +<?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 xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <prerequisites> + <maven>3.0</maven> + </prerequisites> + + <parent> + <groupId>org.eclipse.linuxtools</groupId> + <artifactId>linuxtools-parent</artifactId> + <version>0.10.0-SNAPSHOT</version> + </parent> + + <groupId>org.eclipse.linuxtools.perf-parent</groupId> + <artifactId>linuxtools-perf-parent</artifactId> + <version>0.10.0-SNAPSHOT</version> + <packaging>pom</packaging> + + <name>Eclipse Linux Tools Perf Parent</name> + + <licenses> + <license> + <name>Eclipse Public License v1.0</name> + <comments> + 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.htm + </comments> + </license> + </licenses> + + <build> + <plugins> + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <configuration> + <descriptors> + <descriptor>../src.xml</descriptor> + </descriptors> + </configuration> + </plugin> + </plugins> + </build> + + <modules> + <module>org.eclipse.linuxtools.perf</module> + <module>org.eclipse.linuxtools.perf-feature</module> + <module>org.eclipse.linuxtools.perf.tests</module> + </modules> + +</project> @@ -169,6 +169,7 @@ <module>rpmstubby</module> <module>systemtap</module> <module>valgrind</module> + <module>perf</module> <module>releng</module> </modules> diff --git a/releng/org.eclipse.linuxtools.releng-site/category.xml b/releng/org.eclipse.linuxtools.releng-site/category.xml index 4da8e11..f390625 100644 --- a/releng/org.eclipse.linuxtools.releng-site/category.xml +++ b/releng/org.eclipse.linuxtools.releng-site/category.xml @@ -61,6 +61,9 @@ <feature url="features/org.eclipse.linuxtools.gcov_0.0.0.qualifier.jar" id="org.eclipse.linuxtools.gcov" version="0.0.0"> <category name="Linux Tools"/> </feature> + <feature url="features/org.eclipse.linuxtools.perf_0.0.0.qualifier.jar" id="org.eclipse.linuxtools.perf-feature" version="0.0.0"> + <category name="Linux Tools"/> + </feature> <category-def name="Linux Tools" label="Linux Tools"> <description> Eclipse Linux Tools |

