You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by John Casey <jd...@apache.org> on 2009/02/27 03:24:13 UTC

[ANN] Maven Plugin Tools 2.5 Released

The Maven team is pleased to announce the release of version 2.5 of 
Maven Plugin Tools, including the Maven Plugin Plugin.

These libraries are used to generate plugin descriptors, documentation, 
and the implicit help mojo (as in: 'mvn installer:help').

http://maven.apache.org/plugin-tools
http://maven.apache.org/plugins/maven-plugin-plugin

You should specify the version in your project's plugin configuration:

<plugin>
   <groupId>org.apache.maven.plugins</groupId>
   <artifactId>maven-plugin-plugin</artifactId>
   <version>2.5</version>
</plugin>

If you're creating a plugin that uses Ant-based mojos, you should also 
include the Ant tools library:

<plugin>
   <groupId>org.apache.maven.plugins</groupId>
   <artifactId>maven-plugin-plugin</artifactId>
   <version>2.5</version>
   <dependencies>
     <dependency>
       <groupId>org.apache.maven.plugin-tools</groupId>
       <artifactId>maven-plugin-tools-ant</artifactId>
       <version>2.5</version>
     </dependency>
   </dependencies>
</plugin>


Release Notes - Maven 2.x Plugin Tools - Version 2.5


** Bug
     * [MPLUGIN-106] - remove no mojo deprecation warning and throw an 
exception
     * [MPLUGIN-109] - Misleading warning when creating a Maven plugin 
defining a custom packaging
     * [MPLUGIN-135] - Deprecated info in parameter table of goal page 
contains garbage
     * [MPLUGIN-136] - maven-plugin-tools-api requires relative script 
root paths
     * [MPLUGIN-137] - PluginDescriptorGenerator doesn't write plugin name
     * [MPLUGIN-140] - Plugin report states wrong JDK requirement

** Improvement
     * [MPLUGIN-100] - Allow customization of file encoding used for 
generated help goal
     * [MPLUGIN-101] - Allow customization of file encoding used for 
mojo extraction
     * [MPLUGIN-111] - Warn about usage of platform encoding
     * [MPLUGIN-138] - Suppress bogus warning in case goalPrefix has 
been set to default goal prefix
     * [MPLUGIN-141] - Output warning for deprecated component expressions
     * [MPLUGIN-145] - Improve Ant-Mojo support to provide parity with 
antrun plugin


** Task
     * [MPLUGIN-110] - Make easier to pass parameters into 
MojoDescriptorExtractors


Enjoy,

-The Maven team


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


Re: [ANN] Maven Plugin Tools 2.5 Released

Posted by John Casey <jd...@commonjava.org>.
done, just uploading the site changes now.

Jason Dillon wrote:
> http://maven.apache.org/plugins/ version needs to be updated.
> 
> --jason
> 
> 
> On Feb 27, 2009, at 9:24 AM, John Casey wrote:
> 
>> The Maven team is pleased to announce the release of version 2.5 of 
>> Maven Plugin Tools, including the Maven Plugin Plugin.
>>
>> These libraries are used to generate plugin descriptors, 
>> documentation, and the implicit help mojo (as in: 'mvn installer:help').
>>
>> http://maven.apache.org/plugin-tools
>> http://maven.apache.org/plugins/maven-plugin-plugin
>>
>> You should specify the version in your project's plugin configuration:
>>
>> <plugin>
>>  <groupId>org.apache.maven.plugins</groupId>
>>  <artifactId>maven-plugin-plugin</artifactId>
>>  <version>2.5</version>
>> </plugin>
>>
>> If you're creating a plugin that uses Ant-based mojos, you should also 
>> include the Ant tools library:
>>
>> <plugin>
>>  <groupId>org.apache.maven.plugins</groupId>
>>  <artifactId>maven-plugin-plugin</artifactId>
>>  <version>2.5</version>
>>  <dependencies>
>>    <dependency>
>>      <groupId>org.apache.maven.plugin-tools</groupId>
>>      <artifactId>maven-plugin-tools-ant</artifactId>
>>      <version>2.5</version>
>>    </dependency>
>>  </dependencies>
>> </plugin>
>>
>>
>> Release Notes - Maven 2.x Plugin Tools - Version 2.5
>>
>>
>> ** Bug
>>    * [MPLUGIN-106] - remove no mojo deprecation warning and throw an 
>> exception
>>    * [MPLUGIN-109] - Misleading warning when creating a Maven plugin 
>> defining a custom packaging
>>    * [MPLUGIN-135] - Deprecated info in parameter table of goal page 
>> contains garbage
>>    * [MPLUGIN-136] - maven-plugin-tools-api requires relative script 
>> root paths
>>    * [MPLUGIN-137] - PluginDescriptorGenerator doesn't write plugin name
>>    * [MPLUGIN-140] - Plugin report states wrong JDK requirement
>>
>> ** Improvement
>>    * [MPLUGIN-100] - Allow customization of file encoding used for 
>> generated help goal
>>    * [MPLUGIN-101] - Allow customization of file encoding used for 
>> mojo extraction
>>    * [MPLUGIN-111] - Warn about usage of platform encoding
>>    * [MPLUGIN-138] - Suppress bogus warning in case goalPrefix has 
>> been set to default goal prefix
>>    * [MPLUGIN-141] - Output warning for deprecated component expressions
>>    * [MPLUGIN-145] - Improve Ant-Mojo support to provide parity with 
>> antrun plugin
>>
>>
>> ** Task
>>    * [MPLUGIN-110] - Make easier to pass parameters into 
>> MojoDescriptorExtractors
>>
>>
>> Enjoy,
>>
>> -The Maven team
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
>> For additional commands, e-mail: dev-help@maven.apache.org
>>
> 
> 

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


Re: [ANN] Maven Plugin Tools 2.5 Released

Posted by Jason Dillon <ja...@planet57.com>.
http://maven.apache.org/plugins/ version needs to be updated.

--jason


On Feb 27, 2009, at 9:24 AM, John Casey wrote:

> The Maven team is pleased to announce the release of version 2.5 of  
> Maven Plugin Tools, including the Maven Plugin Plugin.
>
> These libraries are used to generate plugin descriptors,  
> documentation, and the implicit help mojo (as in: 'mvn  
> installer:help').
>
> http://maven.apache.org/plugin-tools
> http://maven.apache.org/plugins/maven-plugin-plugin
>
> You should specify the version in your project's plugin configuration:
>
> <plugin>
>  <groupId>org.apache.maven.plugins</groupId>
>  <artifactId>maven-plugin-plugin</artifactId>
>  <version>2.5</version>
> </plugin>
>
> If you're creating a plugin that uses Ant-based mojos, you should  
> also include the Ant tools library:
>
> <plugin>
>  <groupId>org.apache.maven.plugins</groupId>
>  <artifactId>maven-plugin-plugin</artifactId>
>  <version>2.5</version>
>  <dependencies>
>    <dependency>
>      <groupId>org.apache.maven.plugin-tools</groupId>
>      <artifactId>maven-plugin-tools-ant</artifactId>
>      <version>2.5</version>
>    </dependency>
>  </dependencies>
> </plugin>
>
>
> Release Notes - Maven 2.x Plugin Tools - Version 2.5
>
>
> ** Bug
>    * [MPLUGIN-106] - remove no mojo deprecation warning and throw an  
> exception
>    * [MPLUGIN-109] - Misleading warning when creating a Maven plugin  
> defining a custom packaging
>    * [MPLUGIN-135] - Deprecated info in parameter table of goal page  
> contains garbage
>    * [MPLUGIN-136] - maven-plugin-tools-api requires relative script  
> root paths
>    * [MPLUGIN-137] - PluginDescriptorGenerator doesn't write plugin  
> name
>    * [MPLUGIN-140] - Plugin report states wrong JDK requirement
>
> ** Improvement
>    * [MPLUGIN-100] - Allow customization of file encoding used for  
> generated help goal
>    * [MPLUGIN-101] - Allow customization of file encoding used for  
> mojo extraction
>    * [MPLUGIN-111] - Warn about usage of platform encoding
>    * [MPLUGIN-138] - Suppress bogus warning in case goalPrefix has  
> been set to default goal prefix
>    * [MPLUGIN-141] - Output warning for deprecated component  
> expressions
>    * [MPLUGIN-145] - Improve Ant-Mojo support to provide parity with  
> antrun plugin
>
>
> ** Task
>    * [MPLUGIN-110] - Make easier to pass parameters into  
> MojoDescriptorExtractors
>
>
> Enjoy,
>
> -The Maven team
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org
>