Mario Hochreiter created MSHARED-588:
----------------------------------------
Summary: User supplied Class-Path entries do not go first
Key: MSHARED-588
URL: https://issues.apache.org/jira/browse/MSHARED-588
Project: Maven Shared Components
Issue Type: Bug
Components: maven-archiver
Affects Versions: maven-archiver-3.1.1
Reporter: Mario Hochreiter
The following code does not what the comment states. I guess because the
key.equals("ClassPath") should be key.equals("Class-Path").
{code}
if ( key.equals( "ClassPath" ) && attr != null )
{
// Merge the user-supplied Class-Path value
with the programmatically
// created Class-Path. Note that the
user-supplied value goes first
// so that resources there will override
any in the standard Class-Path.
attr.setValue( value + " " +
attr.getValue() );
}
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)