Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.1
-
None
-
Maven 2.0.9
-
Patch
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}"