Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2010-12-14 22:40:38 +0000
committerspingel2010-12-14 22:40:38 +0000
commit3af33b2548254f2e78c66fc92f7c741074c02d50 (patch)
tree2c8276f4dda119c60a5e7a6d0af718d0a96ea6fd /org.eclipse.mylyn.tasks.bugs
parent7db5b46affa38acb51c3b4732a74808f087d86fa (diff)
downloadorg.eclipse.mylyn.tasks-3af33b2548254f2e78c66fc92f7c741074c02d50.tar.gz
org.eclipse.mylyn.tasks-3af33b2548254f2e78c66fc92f7c741074c02d50.tar.xz
org.eclipse.mylyn.tasks-3af33b2548254f2e78c66fc92f7c741074c02d50.zip
bug 330155: [releng] modularize Mylyn build
https://bugs.eclipse.org/bugs/show_bug.cgi?id=330155
Diffstat (limited to 'org.eclipse.mylyn.tasks.bugs')
-rw-r--r--org.eclipse.mylyn.tasks.bugs/.cvsignore1
-rw-r--r--org.eclipse.mylyn.tasks.bugs/pom.xml30
2 files changed, 31 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tasks.bugs/.cvsignore b/org.eclipse.mylyn.tasks.bugs/.cvsignore
index ba077a403..d567ba01e 100644
--- a/org.eclipse.mylyn.tasks.bugs/.cvsignore
+++ b/org.eclipse.mylyn.tasks.bugs/.cvsignore
@@ -1 +1,2 @@
bin
+target
diff --git a/org.eclipse.mylyn.tasks.bugs/pom.xml b/org.eclipse.mylyn.tasks.bugs/pom.xml
new file mode 100644
index 000000000..cd32f2f40
--- /dev/null
+++ b/org.eclipse.mylyn.tasks.bugs/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>mylyn-tasks-parent</artifactId>
+ <groupId>org.eclipse.mylyn.tasks</groupId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.eclipse.mylyn.tasks</groupId>
+ <artifactId>org.eclipse.mylyn.tasks.bugs</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+ <build>
+ <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