The following comment has been added to this issue:
Author: Joerg Schaible
Created: Fri, 24 Sep 2004 9:05 AM
Body:
C'mon, if you branch a project, you'll also change the version number in the branch.
So you'll end up with group-xxx-1.0-SNAPSHOT, while your version in the head revision
is already group-xxx-2.0-SNAPSHOT. With this patch you have at least the possibility
to adjust the POMs to use a versioned project name by default (setting it to
${pom.artifactID}-${pom.version}), that enables you to maintain different versions in
the same Eclipse workspace.
---------------------------------------------------------------------
View this comment:
http://jira.codehaus.org/browse/MPECLIPSE-18?page=comments#action_24528
---------------------------------------------------------------------
View the issue:
http://jira.codehaus.org/browse/MPECLIPSE-18
Here is an overview of the issue:
---------------------------------------------------------------------
Key: MPECLIPSE-18
Summary: Patch to add support for custom project names in dependencies
Type: Improvement
Status: Closed
Priority: Minor
Resolution: WON'T FIX
Original Estimate: 10 minutes
Time Spent: Unknown
Remaining: 10 minutes
Project: maven-eclipse-plugin
Fix Fors:
1.9
Versions:
1.6
Assignee: David Eric Pugh
Reporter: Rob Dupuis
Created: Tue, 10 Feb 2004 11:30 AM
Updated: Fri, 24 Sep 2004 9:05 AM
Description:
I'm working on a project in which the aritfact name does not match the eclipse project
name. I've created patches to support a new project.xml dependency property called
eclipse.dependency.name, which allows you to specify a custom project name for a
dependency.
eg Before:
<dependency>
<groupId>kizoom</groupId>
<artifactId>common</artifactId>
<version>1</version>
<properties>
<eclipse.dependency>true</eclipse.dependency>
</properties>
</dependency>
After:
<dependency>
<groupId>kizoom</groupId>
<artifactId>common</artifactId>
<version>1</version>
<properties>
<eclipse.dependency>true</eclipse.dependency>
<eclipse.dependency.name>KizoomCommon</eclipse.dependency.name>
</properties>
</dependency>
Not sure about the name eclipse.dependency.name, should this be
eclipse.dependency.project.name or maybe eclipse.dependency.project?
---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
If you want more information on JIRA, or have a bug to report see:
http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]