You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by CD...@behr.com on 2008/05/29 07:53:56 UTC

Forcing site plugin version

I am using Maven 2.0.9 and am running into the bug detailed here:
http://jira.codehaus.org/browse/MSITE-211

Currently by default it seems to be using 2.0-beta-6 of the site plugin.

According to the bug report the bug is fixed in 2.0-beta-7.

How do I force Maven to use 2.0-beta-7 of this plugin?

Thanks

------------------------------------------------------------------------------
Craig Dickson
Software Engineering Manager
Behr Process Corporation
Santa Ana, California



_________________________
The information contained in this e-mail message may be proprietary, 
privileged, confidential or protected from disclosure. If you are not the 
intended recipient, any dissemination, distribution or copying is strictly 
prohibited. If you think that you have received this e-mail message in 
error, please e-mail the sender. 

RE: Forcing site plugin version

Posted by an...@orange-ftgroup.com.
Hi,
I think you may also use the deployed snapshot version, so you don't have to build yourself the plugin :
 <version>2.0-beta-7-SNAPSHOT</version>
Regards,
Anne
-----Message d'origine-----
De : Tim Kettler [mailto:tim.kettler@udo.edu] 
Envoyé : jeudi 29 mai 2008 15:55
À : Maven Users List
Objet : Re: Forcing site plugin version

Correct, project/build/pluginManagement.

Lalor, Brian schrieb:
>> -----Original Message-----
>> From: Tim Kettler [mailto:tim.kettler@udo.edu]
>> Sent: Thursday, May 29, 2008 2:53 AM
>> To: Maven Users List
>> Subject: Re: Forcing site plugin version
>>
>> Hi,
>>
>> just add this to your pom:
>>
>>    <pluginManagement>
>>      <plugins>
>>        <plugin>
>>          <groupId>org.apache.maven.plugins</groupId>
>>          <artifactId>maven-site-plugin</artifactId>
>>          <version>2.0-beta-7</version>
>>        </plugin>
>>      </plugins>
>>    </pluginManagement>
> 
> I believe that goes into the project/build element, correct?
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 


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


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


Re: Forcing site plugin version

Posted by Tim Kettler <ti...@udo.edu>.
Correct, project/build/pluginManagement.

Lalor, Brian schrieb:
>> -----Original Message-----
>> From: Tim Kettler [mailto:tim.kettler@udo.edu] 
>> Sent: Thursday, May 29, 2008 2:53 AM
>> To: Maven Users List
>> Subject: Re: Forcing site plugin version
>>
>> Hi,
>>
>> just add this to your pom:
>>
>>    <pluginManagement>
>>      <plugins>
>>        <plugin>
>>          <groupId>org.apache.maven.plugins</groupId>
>>          <artifactId>maven-site-plugin</artifactId>
>>          <version>2.0-beta-7</version>
>>        </plugin>
>>      </plugins>
>>    </pluginManagement>
> 
> I believe that goes into the project/build element, correct?
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 


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


RE: Forcing site plugin version

Posted by "Brian E. Fox" <br...@reply.infinity.nu>.
yes

-----Original Message-----
From: Lalor, Brian [mailto:Brian.Lalor@fmr.com] 
Sent: Thursday, May 29, 2008 9:07 AM
To: Maven Users List
Subject: RE: Forcing site plugin version

> -----Original Message-----
> From: Tim Kettler [mailto:tim.kettler@udo.edu] 
> Sent: Thursday, May 29, 2008 2:53 AM
> To: Maven Users List
> Subject: Re: Forcing site plugin version
> 
> Hi,
> 
> just add this to your pom:
> 
>    <pluginManagement>
>      <plugins>
>        <plugin>
>          <groupId>org.apache.maven.plugins</groupId>
>          <artifactId>maven-site-plugin</artifactId>
>          <version>2.0-beta-7</version>
>        </plugin>
>      </plugins>
>    </pluginManagement>

I believe that goes into the project/build element, correct?

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


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


RE: Forcing site plugin version

Posted by "Lalor, Brian" <Br...@fmr.com>.
> -----Original Message-----
> From: Tim Kettler [mailto:tim.kettler@udo.edu] 
> Sent: Thursday, May 29, 2008 2:53 AM
> To: Maven Users List
> Subject: Re: Forcing site plugin version
> 
> Hi,
> 
> just add this to your pom:
> 
>    <pluginManagement>
>      <plugins>
>        <plugin>
>          <groupId>org.apache.maven.plugins</groupId>
>          <artifactId>maven-site-plugin</artifactId>
>          <version>2.0-beta-7</version>
>        </plugin>
>      </plugins>
>    </pluginManagement>

I believe that goes into the project/build element, correct?

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


Re: Forcing site plugin version

Posted by Tim Kettler <ti...@udo.edu>.
Hi,

just add this to your pom:

   <pluginManagement>
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-site-plugin</artifactId>
         <version>2.0-beta-7</version>
       </plugin>
     </plugins>
   </pluginManagement>


2.0-beta-7 isn't released yet, so you will have to build it yourself and 
then install it to your local repository or cut an internal release and 
deploy it to your internal repository.

-Tim

CDickson@behr.com schrieb:
> I am using Maven 2.0.9 and am running into the bug detailed here:
> http://jira.codehaus.org/browse/MSITE-211
> 
> Currently by default it seems to be using 2.0-beta-6 of the site plugin.
> 
> According to the bug report the bug is fixed in 2.0-beta-7.
> 
> How do I force Maven to use 2.0-beta-7 of this plugin?
> 
> Thanks
> 
> ------------------------------------------------------------------------------
> Craig Dickson
> Software Engineering Manager
> Behr Process Corporation
> Santa Ana, California
> 
> 
> 
> _________________________
> The information contained in this e-mail message may be proprietary, 
> privileged, confidential or protected from disclosure. If you are not the 
> intended recipient, any dissemination, distribution or copying is strictly 
> prohibited. If you think that you have received this e-mail message in 
> error, please e-mail the sender. 


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