You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Benjamin Bentmann (JIRA)" <ji...@codehaus.org> on 2008/12/02 18:23:20 UTC

[jira] Created: (MNG-3886) Ordering of goals from a plugin execution is not respected if plugin management applies

Ordering of goals from a plugin execution is not respected if plugin management applies
---------------------------------------------------------------------------------------

                 Key: MNG-3886
                 URL: http://jira.codehaus.org/browse/MNG-3886
             Project: Maven 2
          Issue Type: Bug
          Components: Plugins and Lifecycle
    Affects Versions: 3.0-alpha-1
            Reporter: Benjamin Bentmann
            Priority: Minor


For a POM snippet like
{code:xml}
<execution>
  <id>test</id>
  <phase>validate</phase>
  <goals>
    <goal>one</goal>
    <goal>two</goal>
  </goals>
</execution>
{code}
the effective execution order of the specified goals is either [one, two] or [two, one] depending on the existence of {{<pluginManagement>}} for the plugin in question.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (MNG-3886) [regression] Ordering of goals from a plugin execution is not respected if plugin management applies

Posted by "Benjamin Bentmann (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-3886?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Benjamin Bentmann updated MNG-3886:
-----------------------------------

    Summary: [regression] Ordering of goals from a plugin execution is not respected if plugin management applies  (was: Ordering of goals from a plugin execution is not respected if plugin management applies)

> [regression] Ordering of goals from a plugin execution is not respected if plugin management applies
> ----------------------------------------------------------------------------------------------------
>
>                 Key: MNG-3886
>                 URL: http://jira.codehaus.org/browse/MNG-3886
>             Project: Maven 2
>          Issue Type: Bug
>          Components: Plugins and Lifecycle
>    Affects Versions: 3.0-alpha-1
>            Reporter: Benjamin Bentmann
>            Priority: Minor
>
> For a POM snippet like
> {code:xml}
> <execution>
>   <id>test</id>
>   <phase>validate</phase>
>   <goals>
>     <goal>one</goal>
>     <goal>two</goal>
>   </goals>
> </execution>
> {code}
> the effective execution order of the specified goals is either [one, two] or [two, one] depending on the existence of {{<pluginManagement>}} for the plugin in question.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (MNG-3886) [regression] Ordering of goals from a plugin execution is not respected if plugin management applies

Posted by "Shane Isbell (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-3886?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=160099#action_160099 ] 

Shane Isbell commented on MNG-3886:
-----------------------------------

Plugin Management is applied after all the other inheritance rules and reverse the order. Planning on adding support in model builder to handle the correct ordering in these cases.

> [regression] Ordering of goals from a plugin execution is not respected if plugin management applies
> ----------------------------------------------------------------------------------------------------
>
>                 Key: MNG-3886
>                 URL: http://jira.codehaus.org/browse/MNG-3886
>             Project: Maven 2
>          Issue Type: Bug
>          Components: Plugins and Lifecycle
>    Affects Versions: 3.0-alpha-1
>            Reporter: Benjamin Bentmann
>            Assignee: Shane Isbell
>            Priority: Minor
>             Fix For: 3.0-alpha-3
>
>
> For a POM snippet like
> {code:xml}
> <execution>
>   <id>test</id>
>   <phase>validate</phase>
>   <goals>
>     <goal>one</goal>
>     <goal>two</goal>
>   </goals>
> </execution>
> {code}
> the effective execution order of the specified goals is either [one, two] or [two, one] depending on the existence of {{<pluginManagement>}} for the plugin in question.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (MNG-3886) [regression] Ordering of goals from a plugin execution is not respected if plugin management applies

Posted by "Shane Isbell (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-3886?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=162084#action_162084 ] 

Shane Isbell commented on MNG-3886:
-----------------------------------

Have this one fixed. Will check in after release of model-builder.

> [regression] Ordering of goals from a plugin execution is not respected if plugin management applies
> ----------------------------------------------------------------------------------------------------
>
>                 Key: MNG-3886
>                 URL: http://jira.codehaus.org/browse/MNG-3886
>             Project: Maven 2
>          Issue Type: Bug
>          Components: Plugins and Lifecycle
>    Affects Versions: 3.0-alpha-1
>            Reporter: Benjamin Bentmann
>            Assignee: Shane Isbell
>            Priority: Minor
>             Fix For: 3.0-alpha-2
>
>
> For a POM snippet like
> {code:xml}
> <execution>
>   <id>test</id>
>   <phase>validate</phase>
>   <goals>
>     <goal>one</goal>
>     <goal>two</goal>
>   </goals>
> </execution>
> {code}
> the effective execution order of the specified goals is either [one, two] or [two, one] depending on the existence of {{<pluginManagement>}} for the plugin in question.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Closed: (MNG-3886) [regression] Ordering of goals from a plugin execution is not respected if plugin management applies

Posted by "Shane Isbell (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-3886?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Shane Isbell closed MNG-3886.
-----------------------------

    Resolution: Fixed

> [regression] Ordering of goals from a plugin execution is not respected if plugin management applies
> ----------------------------------------------------------------------------------------------------
>
>                 Key: MNG-3886
>                 URL: http://jira.codehaus.org/browse/MNG-3886
>             Project: Maven 2
>          Issue Type: Bug
>          Components: Plugins and Lifecycle
>    Affects Versions: 3.0-alpha-1
>            Reporter: Benjamin Bentmann
>            Assignee: Shane Isbell
>            Priority: Minor
>             Fix For: 3.0-alpha-2
>
>
> For a POM snippet like
> {code:xml}
> <execution>
>   <id>test</id>
>   <phase>validate</phase>
>   <goals>
>     <goal>one</goal>
>     <goal>two</goal>
>   </goals>
> </execution>
> {code}
> the effective execution order of the specified goals is either [one, two] or [two, one] depending on the existence of {{<pluginManagement>}} for the plugin in question.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (MNG-3886) [regression] Ordering of goals from a plugin execution is not respected if plugin management applies

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-3886?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Brett Porter updated MNG-3886:
------------------------------

    Fix Version/s: 3.0-alpha-3

> [regression] Ordering of goals from a plugin execution is not respected if plugin management applies
> ----------------------------------------------------------------------------------------------------
>
>                 Key: MNG-3886
>                 URL: http://jira.codehaus.org/browse/MNG-3886
>             Project: Maven 2
>          Issue Type: Bug
>          Components: Plugins and Lifecycle
>    Affects Versions: 3.0-alpha-1
>            Reporter: Benjamin Bentmann
>            Priority: Minor
>             Fix For: 3.0-alpha-3
>
>
> For a POM snippet like
> {code:xml}
> <execution>
>   <id>test</id>
>   <phase>validate</phase>
>   <goals>
>     <goal>one</goal>
>     <goal>two</goal>
>   </goals>
> </execution>
> {code}
> the effective execution order of the specified goals is either [one, two] or [two, one] depending on the existence of {{<pluginManagement>}} for the plugin in question.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (MNG-3886) [regression] Ordering of goals from a plugin execution is not respected if plugin management applies

Posted by "Shane Isbell (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-3886?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Shane Isbell updated MNG-3886:
------------------------------

    Fix Version/s:     (was: 3.0-alpha-3)
                   3.0-alpha-2

> [regression] Ordering of goals from a plugin execution is not respected if plugin management applies
> ----------------------------------------------------------------------------------------------------
>
>                 Key: MNG-3886
>                 URL: http://jira.codehaus.org/browse/MNG-3886
>             Project: Maven 2
>          Issue Type: Bug
>          Components: Plugins and Lifecycle
>    Affects Versions: 3.0-alpha-1
>            Reporter: Benjamin Bentmann
>            Assignee: Shane Isbell
>            Priority: Minor
>             Fix For: 3.0-alpha-2
>
>
> For a POM snippet like
> {code:xml}
> <execution>
>   <id>test</id>
>   <phase>validate</phase>
>   <goals>
>     <goal>one</goal>
>     <goal>two</goal>
>   </goals>
> </execution>
> {code}
> the effective execution order of the specified goals is either [one, two] or [two, one] depending on the existence of {{<pluginManagement>}} for the plugin in question.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira