Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.1
-
Fix Version/s: 2.2
-
Component/s: announcement
-
Labels:None
-
Environment:Maven 2.0.9
-
Patch Submitted:Yes
-
Number of attachments :
Description
The quotes are missing in the expression initializing the MavenProject object in AnnouncementMailMojo.java
/**
- @parameter expression=$
{project}
* @readonly
*/
private MavenProject project;
So far no impact as the project member was not called, but when trying to fix other issues a NullPointerExecption is raised.
Patch:
- * @parameter expression=${project}+ * @parameter expression="$
{project}"
Applied in r731253, thanks!