Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Henrique Barboza2011-11-24 19:11:24 +0000
committerOtavio Pontes2011-12-01 17:23:30 +0000
commitbbad9cb2d4b95fe1eb80635380fb6ddae4021b27 (patch)
tree33df92777fa2588c8e82abd91094902d3a4d8e7b /perf/org.eclipse.linuxtools.perf.tests
parentbec90af73a494aceeb17256235b847b9d851480f (diff)
downloadorg.eclipse.linuxtools-bbad9cb2d4b95fe1eb80635380fb6ddae4021b27.tar.gz
org.eclipse.linuxtools-bbad9cb2d4b95fe1eb80635380fb6ddae4021b27.tar.xz
org.eclipse.linuxtools-bbad9cb2d4b95fe1eb80635380fb6ddae4021b27.zip
Adding pom.xml files to enable Perf build.
Diffstat (limited to 'perf/org.eclipse.linuxtools.perf.tests')
-rw-r--r--perf/org.eclipse.linuxtools.perf.tests/META-INF/MANIFEST.MF6
-rw-r--r--perf/org.eclipse.linuxtools.perf.tests/pom.xml44
2 files changed, 47 insertions, 3 deletions
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 61a06433bc..1cc8b3ff91 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 0000000000..beaa3bc014
--- /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>

Back to the top