Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2010-12-14 22:40:26 +0000
committerspingel2010-12-14 22:40:26 +0000
commit30bb2686b4024932a987de8aa6ea774531f7d49e (patch)
tree85b9fdd643382a1e6b96f8ac151dcd1787465557 /org.eclipse.mylyn.commons.tests
parentc6bdd78f822c3d0c58d7f8bf762f970310002cc5 (diff)
downloadorg.eclipse.mylyn.commons-30bb2686b4024932a987de8aa6ea774531f7d49e.tar.gz
org.eclipse.mylyn.commons-30bb2686b4024932a987de8aa6ea774531f7d49e.tar.xz
org.eclipse.mylyn.commons-30bb2686b4024932a987de8aa6ea774531f7d49e.zip
bug 330155: [releng] modularize Mylyn build
https://bugs.eclipse.org/bugs/show_bug.cgi?id=330155
Diffstat (limited to 'org.eclipse.mylyn.commons.tests')
-rw-r--r--org.eclipse.mylyn.commons.tests/.cvsignore1
-rw-r--r--org.eclipse.mylyn.commons.tests/pom.xml30
2 files changed, 31 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.commons.tests/.cvsignore b/org.eclipse.mylyn.commons.tests/.cvsignore
new file mode 100644
index 00000000..eb5a316c
--- /dev/null
+++ b/org.eclipse.mylyn.commons.tests/.cvsignore
@@ -0,0 +1 @@
+target
diff --git a/org.eclipse.mylyn.commons.tests/pom.xml b/org.eclipse.mylyn.commons.tests/pom.xml
new file mode 100644
index 00000000..c5867d7d
--- /dev/null
+++ b/org.eclipse.mylyn.commons.tests/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-commons-parent</artifactId>
+ <groupId>org.eclipse.mylyn.commons</groupId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.eclipse.mylyn.commons</groupId>
+ <artifactId>org.eclipse.mylyn.commons.tests</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <packaging>eclipse-test-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