Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSeverin Gehwolf2011-03-10 21:10:43 +0000
committerSeverin Gehwolf2011-03-10 21:10:43 +0000
commita7cd49b9ab4a38d816cf11bae1175eb9773dc4b0 (patch)
tree2b7755f86b8bf521fadb232cfb1968ba0325f5a2 /oprofile/org.eclipse.linuxtools.oprofile.launch.tests/pom.xml
parent979632917b4ba6b16a86ae589aa95d423b53ef28 (diff)
downloadorg.eclipse.linuxtools-a7cd49b9ab4a38d816cf11bae1175eb9773dc4b0.tar.gz
org.eclipse.linuxtools-a7cd49b9ab4a38d816cf11bae1175eb9773dc4b0.tar.xz
org.eclipse.linuxtools-a7cd49b9ab4a38d816cf11bae1175eb9773dc4b0.zip
Tychoify oprofile
Diffstat (limited to 'oprofile/org.eclipse.linuxtools.oprofile.launch.tests/pom.xml')
-rw-r--r--oprofile/org.eclipse.linuxtools.oprofile.launch.tests/pom.xml62
1 files changed, 62 insertions, 0 deletions
diff --git a/oprofile/org.eclipse.linuxtools.oprofile.launch.tests/pom.xml b/oprofile/org.eclipse.linuxtools.oprofile.launch.tests/pom.xml
new file mode 100644
index 0000000000..5dd93475ef
--- /dev/null
+++ b/oprofile/org.eclipse.linuxtools.oprofile.launch.tests/pom.xml
@@ -0,0 +1,62 @@
+<?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-oprofile-parent</artifactId>
+ <groupId>org.eclipse.linuxtools.oprofile</groupId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>org.eclipse.linuxtools.oprofile.launch.tests</artifactId>
+ <version>0.3.1-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+
+ <name>Linux Tools Oprofile Launch 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.sonatype.tycho</groupId>
+ <artifactId>maven-osgi-source-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-pmd-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.eclipse.linuxtools.profiling</groupId>
+ <artifactId>org.eclipse.linuxtools.profiling.tests</artifactId>
+ <version>0.7.0</version>
+ <type>eclipse-plugin</type>
+ <scope>compile</scope>
+ </dependency>
+ </dependencies>
+
+</project>

Back to the top