You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by "Fabrice BELLINGARD (JIRA)" <ji...@codehaus.org> on 2005/11/04 15:04:06 UTC

[jira] Created: (MNG-1424) Specifying for a plugin in does not force Maven to use this version

Specifying <version> for a plugin in <pluginManagement> does not force Maven to use this version
------------------------------------------------------------------------------------------------

         Key: MNG-1424
         URL: http://jira.codehaus.org/browse/MNG-1424
     Project: Maven 2
        Type: Bug
  Components: maven-core  
    Versions: 2.0    
 Environment: Win2k, M2.0, Java 1.4.2
    Reporter: Fabrice BELLINGARD
    Priority: Critical
     Fix For: 2.0.1


I had the problem when I wanted to use the final release of the surefire plugin. I put the following in my root POM:

      <build>
            ...
            <pluginManagement>
                  <plugins>
                        ...
                        <plugin>
                              <groupId>org.apache.maven.plugins</groupId>
                              <artifactId>maven-surefire-plugin</artifactId>
                              <version>2.0</version>
                        </plugin>
                  </plugins>
            </pluginManagement>
      </build>

, but Maven still used version 2.0-beta-4 (and therefore did not try to download version 2.0).


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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Closed: (MNG-1424) Specifying for a plugin in does not force Maven to use this version

Posted by "John Casey (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-1424?page=all ]
     
John Casey closed MNG-1424:
---------------------------

    Resolution: Fixed

Changed the ordering of:

* verify plugin
* add plugin to project

to:

* add plugin to project
* verify plugin

This is important, since it allows pluginManagment to take effect and specify a plugin version before the plugin version is resolved using repository metadata.

> Specifying <version> for a plugin in <pluginManagement> does not force Maven to use this version
> ------------------------------------------------------------------------------------------------
>
>          Key: MNG-1424
>          URL: http://jira.codehaus.org/browse/MNG-1424
>      Project: Maven 2
>         Type: Bug
>   Components: maven-core
>     Versions: 2.0
>  Environment: Win2k, M2.0, Java 1.4.2
>     Reporter: Fabrice BELLINGARD
>     Assignee: John Casey
>     Priority: Critical
>      Fix For: 2.0.1

>
>
> I had the problem when I wanted to use the final release of the surefire plugin. I put the following in my root POM:
>       <build>
>             ...
>             <pluginManagement>
>                   <plugins>
>                         ...
>                         <plugin>
>                               <groupId>org.apache.maven.plugins</groupId>
>                               <artifactId>maven-surefire-plugin</artifactId>
>                               <version>2.0</version>
>                         </plugin>
>                   </plugins>
>             </pluginManagement>
>       </build>
> , but Maven still used version 2.0-beta-4 (and therefore did not try to download version 2.0).

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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org