Maven variable collision
------------------------
Key: JCR-1788
URL: https://issues.apache.org/jira/browse/JCR-1788
Project: Jackrabbit
Issue Type: Bug
Components: config
Environment: Leopard, maven 2.1.0-M1
Reporter: Stephane Landelle
Attachments: maven-filtering-test.zip
The jackrabbit config file uses a variable ${wsp.name}.
This variable name is already used by maven during filtering and holds the project name.
As a consequence, when trying to filter the file in order for example to change the Cluster
Node Id, the file gets corrupted.
Please find test project enclosed.
Patch is very simple : you can keep old variables for compatibility, just duplicate variable
with a jackrabbit specific name such as "jr.wsp.name" and add in org.apache.jackrabbit.core.config.RepositoryConfigurationParser:
line 62:
/** Name of the repository name parser variable. */
public static final String MAVEN_SUPPORTING_WORKSPACE_NAME_VARIABLE = "jr.wsp.name";
line 420:
// add a dupplicate that supports maven filtering
tmpVariables.put(MAVEN_SUPPORTING_WORKSPACE_NAME_VARIABLE, name);
This should even be done for other variables to avoid possible later collisions.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
|