Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkersten2007-07-13 07:25:53 +0000
committermkersten2007-07-13 07:25:53 +0000
commit849273fee4f19e5d1222304e67b2f55263b3cafe (patch)
tree35ff5db90edb10a8c42bf1b52de4865258333161 /org.eclipse.mylyn.tasks.core/pom.xml
parentaa2e54d4e9659f141f2f589e206cb2a7cbe46275 (diff)
downloadorg.eclipse.mylyn.tasks-849273fee4f19e5d1222304e67b2f55263b3cafe.tar.gz
org.eclipse.mylyn.tasks-849273fee4f19e5d1222304e67b2f55263b3cafe.tar.xz
org.eclipse.mylyn.tasks-849273fee4f19e5d1222304e67b2f55263b3cafe.zip
NEW - bug 166203: Provide a Maven 2 build
https://bugs.eclipse.org/bugs/show_bug.cgi?id=166203
Diffstat (limited to 'org.eclipse.mylyn.tasks.core/pom.xml')
-rw-r--r--org.eclipse.mylyn.tasks.core/pom.xml137
1 files changed, 137 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tasks.core/pom.xml b/org.eclipse.mylyn.tasks.core/pom.xml
new file mode 100644
index 000000000..97adc8cfb
--- /dev/null
+++ b/org.eclipse.mylyn.tasks.core/pom.xml
@@ -0,0 +1,137 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.eclipse.mylyn.tasks</groupId>
+ <artifactId>core</artifactId>
+ <version>2.0.0-v20070706-2000</version>
+ <packaging>jar</packaging>
+ <name>Mylyn Tasks Core</name>
+ <url>http://www.eclipse.org/mylyn</url>
+ <description>
+ Eclipse Mylyn is a task-focused UI that reduces information overload and
+ makes multi-tasking easy.
+ </description>
+
+ <organization>
+ <name>Eclipse Foundation</name>
+ <url>http://www.eclipse.org</url>
+ </organization>
+
+ <licenses>
+ <license>
+ <name>Eclipse Public License</name>
+ <url>http://www.eclipse.org/org/documents/epl-v10.html</url>
+ <distribution>repo</distribution>
+ </license>
+ </licenses>
+
+ <scm>
+ <connection>
+ scm:cvs:pserver:anonymous:@dev.eclipse.org:/cvsroot/tools:org.eclipse.mylyn/org.eclipse.mylyn.tasks.core
+ </connection>
+ <url>
+ http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.mylyn/org.eclipse.mylyn.tasks.core/?root&#61;Tools_Project
+ </url>
+ </scm>
+
+ <issueManagement>
+ <system>Bugzilla</system>
+ <url>https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Mylyn</url>
+ </issueManagement>
+
+ <repositories>
+ <repository>
+ <id>central-eclipse</id>
+ <name>Central Eclipse Repository</name>
+ <url>http://repo1.maven.org/eclipse</url>
+ </repository>
+ </repositories>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.eclipse</groupId>
+ <artifactId>osgi</artifactId>
+ <version>3.3.0-v20070530</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>runtime</artifactId>
+ <version>3.3.100-v20070530</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.equinox</groupId>
+ <artifactId>common</artifactId>
+ <version>3.3.0-v20070426</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.mylyn.context</groupId>
+ <artifactId>core</artifactId>
+ <version>2.0.0-v20070706-2000</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.mylyn.monitor</groupId>
+ <artifactId>core</artifactId>
+ <version>2.0.0-v20070706-2000</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.mylyn.web</groupId>
+ <artifactId>core</artifactId>
+ <version>2.0.0-v20070706-2000</version>
+ <scope>compile</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <sourceDirectory>src</sourceDirectory>
+ <resources>
+ <resource>
+ <directory>.</directory>
+ <includes>
+ <include>about.html</include>
+ <include>plugin.xml</include>
+ </includes>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <showDeprecation>true</showDeprecation>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifestFile>META-INF/MANIFEST.MF</manifestFile>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-changelog-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jxr-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </reporting>
+
+</project>

Back to the top