Details
-
Bug
-
Status: Closed
-
Critical
-
Resolution: Fixed
-
2.1
-
None
-
None
-
I used both released version 2.1 and also 2.2-SNAPSHOT
Description
I have a assembly descriptor file with ${project.build.directory} in the <source> element of a <file>. I get an error "Failed to create assembly: File to filter not found" because the file path has "${project.build.directory}" rather than the value of ${project.build.directory}.
I have traced the problem to AssemblyInterpolator.interpolateElementValue(). It tries to look up build.directory in ReflectionValueExtractor.evaluate() rather than project.build.directory, and it can't evaluate build.directory. A hack workaround is ...
if (value == null)
{
try
{
value = ReflectionValueExtractor.evaluate(realExpr, project);
if (value == null)
{
// HACK: strip ${ and } and retry
wholeExpr = wholeExpr.substring(2, wholeExpr.length() - 1);
value = ReflectionValueExtractor.evaluate(wholeExpr, project);
}
}
Attachments
Attachments
Issue Links
- is duplicated by
-
MASSEMBLY-266 Property expansion does not work for ${project.build.finalName} in descriptor file
- Closed