You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Tony Chemit (JIRA)" <ji...@codehaus.org> on 2012/06/30 03:32:21 UTC

[jira] (MCHANGES-284) use maven-plugin-tools' java 5 annotations

Tony Chemit created MCHANGES-284:
------------------------------------

             Summary: 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




--
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

        

[jira] (MCHANGES-284) use maven-plugin-tools' java 5 annotations

Posted by "Olivier Lamy (JIRA)" <ji...@codehaus.org>.
     [ https://jira.codehaus.org/browse/MCHANGES-284?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Olivier Lamy reassigned MCHANGES-284:
-------------------------------------

    Assignee: Olivier Lamy
    
> 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
>            Assignee: Olivier Lamy
>         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

        

[jira] (MCHANGES-284) use maven-plugin-tools' java 5 annotations

Posted by "Tony Chemit (JIRA)" <ji...@codehaus.org>.
     [ 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

        

[jira] (MCHANGES-284) use maven-plugin-tools' java 5 annotations

Posted by "Olivier Lamy (JIRA)" <ji...@codehaus.org>.
     [ https://jira.codehaus.org/browse/MCHANGES-284?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Olivier Lamy closed MCHANGES-284.
---------------------------------

       Resolution: Fixed
    Fix Version/s: 2.8

Applied.
Thanks!
                
> 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
>            Assignee: Olivier Lamy
>             Fix For: 2.8
>
>         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