Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.trac.tests')
-rw-r--r--org.eclipse.mylyn.trac.tests/.cvsignore1
-rw-r--r--org.eclipse.mylyn.trac.tests/pom.xml30
2 files changed, 31 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.trac.tests/.cvsignore b/org.eclipse.mylyn.trac.tests/.cvsignore
index b0b9ecf46..a36227b54 100644
--- a/org.eclipse.mylyn.trac.tests/.cvsignore
+++ b/org.eclipse.mylyn.trac.tests/.cvsignore
@@ -1,3 +1,4 @@
bin
credentials.properties
credentials.properties
+target
diff --git a/org.eclipse.mylyn.trac.tests/pom.xml b/org.eclipse.mylyn.trac.tests/pom.xml
new file mode 100644
index 000000000..57f29336f
--- /dev/null
+++ b/org.eclipse.mylyn.trac.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-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.trac.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