Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 73477 Details for
Bug 166203
Provide a Maven 2 build
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Third time's the charm?
patch.txt (text/plain), 26.76 KB, created by
Matthew Beermann
on 2007-07-10 16:21:45 EDT
(
hide
)
Description:
Third time's the charm?
Filename:
MIME Type:
Creator:
Matthew Beermann
Created:
2007-07-10 16:21:45 EDT
Size:
26.76 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.mylyn >Index: pom.xml >=================================================================== >RCS file: pom.xml >diff -N pom.xml >--- /dev/null 1 Jan 1970 00:00:00 -0000 >+++ pom.xml 1 Jan 1970 00:00:00 -0000 >@@ -0,0 +1,77 @@ >+<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</groupId> >+ <artifactId>mylyn</artifactId> >+ <version>2.0.0-v20070706-2000</version> >+ <packaging>jar</packaging> >+ <name>Mylyn 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 >+ </connection> >+ <url> >+ http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.mylyn/org.eclipse.mylyn/?root=Tools_Project >+ </url> >+ </scm> >+ >+ <issueManagement> >+ <system>Bugzilla</system> >+ <url>https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Mylyn</url> >+ </issueManagement> >+ >+ <build> >+ <resources> >+ <resource> >+ <directory>.</directory> >+ <includes> >+ <include>about.html</include> >+ <include>about.ini</include> >+ <include>feature.gif</include> >+ </includes> >+ </resource> >+ </resources> >+ <plugins> >+ <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> >+ </plugins> >+ </reporting> >+ >+</project> >#P org.eclipse.mylyn.web.core >Index: pom.xml >=================================================================== >RCS file: pom.xml >diff -N pom.xml >--- /dev/null 1 Jan 1970 00:00:00 -0000 >+++ pom.xml 1 Jan 1970 00:00:00 -0000 >@@ -0,0 +1,127 @@ >+<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.web</groupId> >+ <artifactId>core</artifactId> >+ <version>2.0.0-v20070706-2000</version> >+ <packaging>jar</packaging> >+ <name>Mylyn Web 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.web.core >+ </connection> >+ <url> >+ http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.mylyn/org.eclipse.mylyn.web.core/?root=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>commons-httpclient</groupId> >+ <artifactId>commons-httpclient</artifactId> >+ <version>3.0.1</version> >+ <scope>compile</scope> >+ </dependency> >+ <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>net</artifactId> >+ <version>1.0.0-I20070531</version> >+ <scope>compile</scope> >+ </dependency> >+ <dependency> >+ <groupId>org.eclipse.core</groupId> >+ <artifactId>runtime</artifactId> >+ <version>3.3.100-v20070530</version> >+ <scope>compile</scope> >+ </dependency> >+ </dependencies> >+ >+ <build> >+ <sourceDirectory>src</sourceDirectory> >+ <resources> >+ <resource> >+ <directory>.</directory> >+ <includes> >+ <include>about.html</include> >+ <include>lib-httpclient/*.jar</include> >+ <include>lib-rome/*.jar</include> >+ <include>lib-xmlrpc/*.jar</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> >#P org.eclipse.mylyn.monitor.core >Index: pom.xml >=================================================================== >RCS file: pom.xml >diff -N pom.xml >--- /dev/null 1 Jan 1970 00:00:00 -0000 >+++ pom.xml 1 Jan 1970 00:00:00 -0000 >@@ -0,0 +1,112 @@ >+<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.monitor</groupId> >+ <artifactId>core</artifactId> >+ <version>2.0.0-v20070706-2000</version> >+ <packaging>jar</packaging> >+ <name>Mylyn Monitor 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.monitor.core >+ </connection> >+ <url> >+ http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.mylyn/org.eclipse.mylyn.monitor.core/?root=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.equinox</groupId> >+ <artifactId>common</artifactId> >+ <version>3.3.0-v20070426</version> >+ <scope>compile</scope> >+ </dependency> >+ </dependencies> >+ >+ <build> >+ <sourceDirectory>src</sourceDirectory> >+ <resources> >+ <resource> >+ <directory>.</directory> >+ <includes> >+ <include>about.html</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> >#P org.eclipse.mylyn.bugzilla.core >Index: pom.xml >=================================================================== >RCS file: pom.xml >diff -N pom.xml >--- /dev/null 1 Jan 1970 00:00:00 -0000 >+++ pom.xml 1 Jan 1970 00:00:00 -0000 >@@ -0,0 +1,143 @@ >+<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.bugzilla</groupId> >+ <artifactId>core</artifactId> >+ <version>2.0.0-v20070706-2000</version> >+ <packaging>jar</packaging> >+ <name>Mylyn Bugzilla 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.bugzilla.core >+ </connection> >+ <url> >+ http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.mylyn/org.eclipse.mylyn.bugzilla.core/?root=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>commons-httpclient</groupId> >+ <artifactId>commons-httpclient</artifactId> >+ <version>3.0.1</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.monitor</groupId> >+ <artifactId>core</artifactId> >+ <version>2.0.0-v20070706-2000</version> >+ <scope>compile</scope> >+ </dependency> >+ <dependency> >+ <groupId>org.eclipse.mylyn.tasks</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> >+ <dependency> >+ <groupId>org.eclipse</groupId> >+ <artifactId>osgi</artifactId> >+ <version>3.3.0-v20070530</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> >#P org.eclipse.mylyn.context.core >Index: pom.xml >=================================================================== >RCS file: pom.xml >diff -N pom.xml >--- /dev/null 1 Jan 1970 00:00:00 -0000 >+++ pom.xml 1 Jan 1970 00:00:00 -0000 >@@ -0,0 +1,133 @@ >+<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.context</groupId> >+ <artifactId>core</artifactId> >+ <version>2.0.0-v20070706-2000</version> >+ <packaging>jar</packaging> >+ <name>Mylyn Context 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.context.core >+ </connection> >+ <url> >+ http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.mylyn/org.eclipse.mylyn.context.core/?root=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.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.equinox</groupId> >+ <artifactId>registry</artifactId> >+ <version>3.3.0-v20070522</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</groupId> >+ <artifactId>osgi</artifactId> >+ <version>3.3.0-v20070530</version> >+ <scope>compile</scope> >+ </dependency> >+ </dependencies> >+ >+ <build> >+ <sourceDirectory>src</sourceDirectory> >+ <resources> >+ <resource> >+ <directory>.</directory> >+ <includes> >+ <include>about.html</include> >+ <include>plugin.properties</include> >+ <include>plugin.xml</include> >+ <include>schema/bridges.exsd</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> >#P org.eclipse.mylyn.tasks.core >Index: pom.xml >=================================================================== >RCS file: pom.xml >diff -N pom.xml >--- /dev/null 1 Jan 1970 00:00:00 -0000 >+++ pom.xml 1 Jan 1970 00:00:00 -0000 >@@ -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=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>
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 166203
:
70901
|
73469
| 73477