|
Added
Link Here
|
| 1 |
<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 |
|
| 5 |
<modelVersion>4.0.0</modelVersion> |
| 6 |
<groupId>org.eclipse.mylyn.bugzilla</groupId> |
| 7 |
<artifactId>core</artifactId> |
| 8 |
<version>2.0.0-v20070706-2000</version> |
| 9 |
<packaging>jar</packaging> |
| 10 |
<name>Mylyn Bugzilla Core</name> |
| 11 |
<url>http://www.eclipse.org/mylyn</url> |
| 12 |
<description> |
| 13 |
Eclipse Mylyn is a task-focused UI that reduces information overload and |
| 14 |
makes multi-tasking easy. |
| 15 |
</description> |
| 16 |
|
| 17 |
<organization> |
| 18 |
<name>Eclipse Foundation</name> |
| 19 |
<url>http://www.eclipse.org</url> |
| 20 |
</organization> |
| 21 |
|
| 22 |
<licenses> |
| 23 |
<license> |
| 24 |
<name>Eclipse Public License</name> |
| 25 |
<url>http://www.eclipse.org/org/documents/epl-v10.html</url> |
| 26 |
<distribution>repo</distribution> |
| 27 |
</license> |
| 28 |
</licenses> |
| 29 |
|
| 30 |
<scm> |
| 31 |
<connection> |
| 32 |
scm:cvs:pserver:anonymous:@dev.eclipse.org:/cvsroot/tools:org.eclipse.mylyn/org.eclipse.mylyn.bugzilla.core |
| 33 |
</connection> |
| 34 |
<url> |
| 35 |
http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.mylyn/org.eclipse.mylyn.bugzilla.core/?root=Tools_Project |
| 36 |
</url> |
| 37 |
</scm> |
| 38 |
|
| 39 |
<issueManagement> |
| 40 |
<system>Bugzilla</system> |
| 41 |
<url>https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Mylyn</url> |
| 42 |
</issueManagement> |
| 43 |
|
| 44 |
<repositories> |
| 45 |
<repository> |
| 46 |
<id>central-eclipse</id> |
| 47 |
<name>Central Eclipse Repository</name> |
| 48 |
<url>http://repo1.maven.org/eclipse</url> |
| 49 |
</repository> |
| 50 |
</repositories> |
| 51 |
|
| 52 |
<dependencies> |
| 53 |
<dependency> |
| 54 |
<groupId>commons-httpclient</groupId> |
| 55 |
<artifactId>commons-httpclient</artifactId> |
| 56 |
<version>3.0.1</version> |
| 57 |
<scope>compile</scope> |
| 58 |
</dependency> |
| 59 |
<dependency> |
| 60 |
<groupId>org.eclipse.core</groupId> |
| 61 |
<artifactId>runtime</artifactId> |
| 62 |
<version>3.3.100-v20070530</version> |
| 63 |
<scope>compile</scope> |
| 64 |
</dependency> |
| 65 |
<dependency> |
| 66 |
<groupId>org.eclipse.equinox</groupId> |
| 67 |
<artifactId>common</artifactId> |
| 68 |
<version>3.3.0-v20070426</version> |
| 69 |
<scope>compile</scope> |
| 70 |
</dependency> |
| 71 |
<dependency> |
| 72 |
<groupId>org.eclipse.mylyn.monitor</groupId> |
| 73 |
<artifactId>core</artifactId> |
| 74 |
<version>2.0.0-v20070706-2000</version> |
| 75 |
<scope>compile</scope> |
| 76 |
</dependency> |
| 77 |
<dependency> |
| 78 |
<groupId>org.eclipse.mylyn.tasks</groupId> |
| 79 |
<artifactId>core</artifactId> |
| 80 |
<version>2.0.0-v20070706-2000</version> |
| 81 |
<scope>compile</scope> |
| 82 |
</dependency> |
| 83 |
<dependency> |
| 84 |
<groupId>org.eclipse.mylyn.web</groupId> |
| 85 |
<artifactId>core</artifactId> |
| 86 |
<version>2.0.0-v20070706-2000</version> |
| 87 |
<scope>compile</scope> |
| 88 |
</dependency> |
| 89 |
<dependency> |
| 90 |
<groupId>org.eclipse</groupId> |
| 91 |
<artifactId>osgi</artifactId> |
| 92 |
<version>3.3.0-v20070530</version> |
| 93 |
<scope>compile</scope> |
| 94 |
</dependency> |
| 95 |
</dependencies> |
| 96 |
|
| 97 |
<build> |
| 98 |
<sourceDirectory>src</sourceDirectory> |
| 99 |
<resources> |
| 100 |
<resource> |
| 101 |
<directory>.</directory> |
| 102 |
<includes> |
| 103 |
<include>about.html</include> |
| 104 |
<include>plugin.xml</include> |
| 105 |
</includes> |
| 106 |
</resource> |
| 107 |
</resources> |
| 108 |
<plugins> |
| 109 |
<plugin> |
| 110 |
<groupId>org.apache.maven.plugins</groupId> |
| 111 |
<artifactId>maven-compiler-plugin</artifactId> |
| 112 |
<configuration> |
| 113 |
<showDeprecation>true</showDeprecation> |
| 114 |
<source>1.5</source> |
| 115 |
<target>1.5</target> |
| 116 |
</configuration> |
| 117 |
</plugin> |
| 118 |
<plugin> |
| 119 |
<groupId>org.apache.maven.plugins</groupId> |
| 120 |
<artifactId>maven-jar-plugin</artifactId> |
| 121 |
<configuration> |
| 122 |
<archive> |
| 123 |
<manifestFile>META-INF/MANIFEST.MF</manifestFile> |
| 124 |
</archive> |
| 125 |
</configuration> |
| 126 |
</plugin> |
| 127 |
</plugins> |
| 128 |
</build> |
| 129 |
|
| 130 |
<reporting> |
| 131 |
<plugins> |
| 132 |
<plugin> |
| 133 |
<groupId>org.apache.maven.plugins</groupId> |
| 134 |
<artifactId>maven-changelog-plugin</artifactId> |
| 135 |
</plugin> |
| 136 |
<plugin> |
| 137 |
<groupId>org.apache.maven.plugins</groupId> |
| 138 |
<artifactId>maven-jxr-plugin</artifactId> |
| 139 |
</plugin> |
| 140 |
</plugins> |
| 141 |
</reporting> |
| 142 |
|
| 143 |
</project> |