Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.trac.core')
-rw-r--r--org.eclipse.mylyn.trac.core/.cvsignore3
-rw-r--r--org.eclipse.mylyn.trac.core/pom.xml30
2 files changed, 32 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.trac.core/.cvsignore b/org.eclipse.mylyn.trac.core/.cvsignore
index c5e82d745..13d02bf90 100644
--- a/org.eclipse.mylyn.trac.core/.cvsignore
+++ b/org.eclipse.mylyn.trac.core/.cvsignore
@@ -1 +1,2 @@
-bin \ No newline at end of file
+bintarget
+target
diff --git a/org.eclipse.mylyn.trac.core/pom.xml b/org.eclipse.mylyn.trac.core/pom.xml
new file mode 100644
index 000000000..bd1575793
--- /dev/null
+++ b/org.eclipse.mylyn.trac.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>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.core</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