Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Overholt2011-03-09 18:27:52 +0000
committerAndrew Overholt2011-03-09 18:27:52 +0000
commite5f534bba2efb5d3458a33adbd28dd3a7c05b44e (patch)
tree399ece2d91f0d37af2bd53683c1ce477deb64ec3 /gprof/org.eclipse.linuxtools.gprof
parent3d7eecabc093319914e8fd4816477c94b381c4f9 (diff)
downloadorg.eclipse.linuxtools-e5f534bba2efb5d3458a33adbd28dd3a7c05b44e.tar.gz
org.eclipse.linuxtools-e5f534bba2efb5d3458a33adbd28dd3a7c05b44e.tar.xz
org.eclipse.linuxtools-e5f534bba2efb5d3458a33adbd28dd3a7c05b44e.zip
Tycho-ify GProf
Diffstat (limited to 'gprof/org.eclipse.linuxtools.gprof')
-rw-r--r--gprof/org.eclipse.linuxtools.gprof/.gitignore1
-rw-r--r--gprof/org.eclipse.linuxtools.gprof/pom.xml52
2 files changed, 53 insertions, 0 deletions
diff --git a/gprof/org.eclipse.linuxtools.gprof/.gitignore b/gprof/org.eclipse.linuxtools.gprof/.gitignore
index 50c1b30a80..8d94ef8deb 100644
--- a/gprof/org.eclipse.linuxtools.gprof/.gitignore
+++ b/gprof/org.eclipse.linuxtools.gprof/.gitignore
@@ -2,3 +2,4 @@ bin
@dot
javaCompiler...args
build.xml
+target
diff --git a/gprof/org.eclipse.linuxtools.gprof/pom.xml b/gprof/org.eclipse.linuxtools.gprof/pom.xml
new file mode 100644
index 0000000000..d39e758143
--- /dev/null
+++ b/gprof/org.eclipse.linuxtools.gprof/pom.xml
@@ -0,0 +1,52 @@
+<?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-gprof-parent</artifactId>
+ <groupId>org.eclipse.linuxtools.gprof</groupId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>org.eclipse.linuxtools.gprof</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+
+ <name>Linux Tools GProf 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>
+
+</project>

Back to the top