[ 
https://jira.codehaus.org/browse/MCHANGES-284?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Tony Chemit updated MCHANGES-284:
---------------------------------

    Attachment: MCHANGES-284.diff

Patch to fix this task.

Note that ChangesMojo#filteredOutputDirectory

{code}
* @parameter expression="${project.build.directory}/changes"
* @required
* @readonly
{code}

is changed to

{code}
@Parameter( defaultValue = "${project.build.directory}/changes", required = 
true, readonly = true )
{code}

AnnouncementEmail#templateOutputDirectory
{code}
* @parameter expression="${project.build.directory}/announcement"
* @required
{code}

to 

{code}
@Parameter( defaultValue = "${project.build.directory}/announcement", required 
= true )
{code}

JiraMojo#jiraXmlPath
{code}
* @parameter expression="${project.build.directory}/jira-results.xml"
* @required
* @readonly
{code}

to 
{code}
@Parameter( defaultValue = "${project.build.directory}/jira-results.xml", 
required = true, readonly = true )
{code}

AnnouncementMojo#outputDirectory
{code}
* @parameter expression="${project.build.directory}/announcement"
* @required
{code}

to
{code}
@Parameter( defaultValue = "${project.build.directory}/announcement" )
{code}

AnnouncementMojo#xmlPath

{code}
* @parameter expression="${basedir}/src/changes/changes.xml"
* @required
{code}

to 
{code}
@Parameter( defaultValue = "${basedir}/src/changes/changes.xml" )
{code}

AnnouncementMojo#jiraXML

{code}
* @parameter expression="${project.build.directory}/jira-announcement.xml"
* @required
* @readonly
{code}
to
{code}
@Parameter( defaultValue = "${project.build.directory}/jira-announcement.xml", 
required = true, readonly = true )
{code}


                
> use maven-plugin-tools' java 5 annotations
> ------------------------------------------
>
>                 Key: MCHANGES-284
>                 URL: https://jira.codehaus.org/browse/MCHANGES-284
>             Project: Maven 2.x Changes Plugin
>          Issue Type: Task
>    Affects Versions: 2.7.1
>            Reporter: Tony Chemit
>         Attachments: MCHANGES-284.diff
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://jira.codehaus.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to