Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteffen Pingel2012-06-21 21:41:39 +0000
committerSteffen Pingel2012-06-21 21:42:09 +0000
commit45ac463791fa92472b2f0e3aceb6567501c97a0f (patch)
treed6722d5f2a9145a4dd224338e089b2b566196c4a /org.eclipse.mylyn.tasks.activity.core/pom.xml
parent8656df7283f3a48a0dd7bab06c4b2cfb969df572 (diff)
downloadorg.eclipse.mylyn.tasks-45ac463791fa92472b2f0e3aceb6567501c97a0f.tar.gz
org.eclipse.mylyn.tasks-45ac463791fa92472b2f0e3aceb6567501c97a0f.tar.xz
org.eclipse.mylyn.tasks-45ac463791fa92472b2f0e3aceb6567501c97a0f.zip
NEW - bug 382115: [discussion] plugin design/structure for the activity
tracing project https://bugs.eclipse.org/bugs/show_bug.cgi?id=382115
Diffstat (limited to 'org.eclipse.mylyn.tasks.activity.core/pom.xml')
-rw-r--r--org.eclipse.mylyn.tasks.activity.core/pom.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tasks.activity.core/pom.xml b/org.eclipse.mylyn.tasks.activity.core/pom.xml
new file mode 100644
index 000000000..ec90e3623
--- /dev/null
+++ b/org.eclipse.mylyn.tasks.activity.core/pom.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>org.eclipse.mylyn.tasks-parent</artifactId>
+ <groupId>org.eclipse.mylyn.tasks</groupId>
+ <version>3.8.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.eclipse.mylyn.tasks</groupId>
+ <artifactId>org.eclipse.mylyn.tasks.activity.core</artifactId>
+ <version>3.8.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-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