The following comment has been added to this issue:
Author: David Eric Pugh
Created: Wed, 2 Mar 2005 12:59 PM
Body:
Would a dependency only be a user library?
i am thinking that instead of a basic boolean eclipse.dependency true/false, we
instead need:
eclipse.dependencyType so you could define
eclipse.dependencyType=userLibrary
And base logic like that.
---------------------------------------------------------------------
View this comment:
http://jira.codehaus.org/browse/MPECLIPSE-73?page=comments#action_30418
---------------------------------------------------------------------
View the issue:
http://jira.codehaus.org/browse/MPECLIPSE-73
Here is an overview of the issue:
---------------------------------------------------------------------
Key: MPECLIPSE-73
Summary: User Library type dependecy
Type: Improvement
Status: Unassigned
Priority: Minor
Original Estimate: Unknown
Time Spent: Unknown
Remaining: Unknown
Project: maven-eclipse-plugin
Versions:
1.9
Assignee:
Reporter: Piotr Smolinski
Created: Mon, 14 Feb 2005 9:15 AM
Updated: Wed, 2 Mar 2005 12:59 PM
Environment: any
Description:
Hi,
Beginning with 3.0 Eclipse supports feature of user libraries. They are
represented in .classpath as:
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/foo"/>
foo is of course user library name. I suggest adding property
eclipse.userLibrary and expose it in classpath.jelly template as below:
(...)
<j:forEach var="lib" items="${pom.artifacts}">
<j:set var="eclipseDependency"
value="${lib.dependency.getProperty('eclipse.dependency')}"/>
<j:set var="eclipseUserLibrary"
value="${lib.dependency.getProperty('eclipse.userLibrary')}"/>
<j:choose>
<j:when test="${eclipseUserLibrary != null}">
<classpathentry kind="con"
path="org.eclipse.jdt.USER_LIBRARY/${eclipseUserLibrary}"/>
</j:when>
(...)
I regularly use such user libraries as J2EE1.3 and Log4J as expected
application server environment.
Best regards,
Piotr Smoliński
---------------------------------------------------------------------
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]