You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2008/03/14 11:55:50 UTC

svn commit: r637049 - /maven/pom/trunk/maven/pom.xml

Author: bentmann
Date: Fri Mar 14 03:55:47 2008
New Revision: 637049

URL: http://svn.apache.org/viewvc?rev=637049&view=rev
Log:
o Locked down versions of maven-clean-plugin, maven-resources-plugin and maven-plugin-plugin

Modified:
    maven/pom/trunk/maven/pom.xml

Modified: maven/pom/trunk/maven/pom.xml
URL: http://svn.apache.org/viewvc/maven/pom/trunk/maven/pom.xml?rev=637049&r1=637048&r2=637049&view=diff
==============================================================================
--- maven/pom/trunk/maven/pom.xml (original)
+++ maven/pom/trunk/maven/pom.xml Fri Mar 14 03:55:47 2008
@@ -118,6 +118,11 @@
         <!-- set versions of common plugins for reproducibility, ordered alphabetically -->
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-clean-plugin</artifactId>
+          <version>2.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-compiler-plugin</artifactId>
           <version>2.0.2</version>
           <configuration>
@@ -158,6 +163,11 @@
           <artifactId>maven-javadoc-plugin</artifactId>
           <version>2.3</version>
         </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-plugin-plugin</artifactId>
+          <version>2.3</version>
+        </plugin>
         <!-- START SNIPPET: release-plugin-configuration -->
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
@@ -179,6 +189,11 @@
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-resources-plugin</artifactId>
+          <version>2.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-site-plugin</artifactId>
           <version>2.0-beta-6</version>
         </plugin>
@@ -518,7 +533,7 @@
         <role>PMC Member</role>
       </roles>
       <timezone>+1</timezone>
-    </developer>    
+    </developer>
     <developer>
       <id>snicoll</id>
       <name>Stephane Nicoll</name>



RE: svn commit: r637049 - /maven/pom/trunk/maven/pom.xml

Posted by "Brian E. Fox" <br...@reply.infinity.nu>.
The Trunk doesn't inherit from the plugins parent.

-----Original Message-----
From: Dennis Lundberg [mailto:dennisl@apache.org] 
Sent: Friday, March 14, 2008 4:47 PM
To: dev@maven.apache.org
Subject: Re: svn commit: r637049 - /maven/pom/trunk/maven/pom.xml

There's no need for maven-plugin-plugin in this pom. It is already in 
the plugin parent pom.

bentmann@apache.org wrote:
> Author: bentmann
> Date: Fri Mar 14 03:55:47 2008
> New Revision: 637049
> 
> URL: http://svn.apache.org/viewvc?rev=637049&view=rev
> Log:
> o Locked down versions of maven-clean-plugin, maven-resources-plugin and maven-plugin-plugin
> 
> Modified:
>     maven/pom/trunk/maven/pom.xml
> 
> Modified: maven/pom/trunk/maven/pom.xml
> URL: http://svn.apache.org/viewvc/maven/pom/trunk/maven/pom.xml?rev=637049&r1=637048&r2=637049&view=diff
> ==============================================================================
> --- maven/pom/trunk/maven/pom.xml (original)
> +++ maven/pom/trunk/maven/pom.xml Fri Mar 14 03:55:47 2008
> @@ -118,6 +118,11 @@
>          <!-- set versions of common plugins for reproducibility, ordered alphabetically -->
>          <plugin>
>            <groupId>org.apache.maven.plugins</groupId>
> +          <artifactId>maven-clean-plugin</artifactId>
> +          <version>2.2</version>
> +        </plugin>
> +        <plugin>
> +          <groupId>org.apache.maven.plugins</groupId>
>            <artifactId>maven-compiler-plugin</artifactId>
>            <version>2.0.2</version>
>            <configuration>
> @@ -158,6 +163,11 @@
>            <artifactId>maven-javadoc-plugin</artifactId>
>            <version>2.3</version>
>          </plugin>
> +        <plugin>
> +          <groupId>org.apache.maven.plugins</groupId>
> +          <artifactId>maven-plugin-plugin</artifactId>
> +          <version>2.3</version>
> +        </plugin>
>          <!-- START SNIPPET: release-plugin-configuration -->
>          <plugin>
>            <groupId>org.apache.maven.plugins</groupId>
> @@ -179,6 +189,11 @@
>          </plugin>
>          <plugin>
>            <groupId>org.apache.maven.plugins</groupId>
> +          <artifactId>maven-resources-plugin</artifactId>
> +          <version>2.2</version>
> +        </plugin>
> +        <plugin>
> +          <groupId>org.apache.maven.plugins</groupId>
>            <artifactId>maven-site-plugin</artifactId>
>            <version>2.0-beta-6</version>
>          </plugin>
> @@ -518,7 +533,7 @@
>          <role>PMC Member</role>
>        </roles>
>        <timezone>+1</timezone>
> -    </developer>    
> +    </developer>
>      <developer>
>        <id>snicoll</id>
>        <name>Stephane Nicoll</name>
> 
> 
> 


-- 
Dennis Lundberg

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


Re: svn commit: r637049 - /maven/pom/trunk/maven/pom.xml

Posted by Dennis Lundberg <de...@apache.org>.
Benjamin Bentmann wrote:
>> There's no need for maven-plugin-plugin in this pom. It is already in 
>> the plugin parent pom.
> 
> If it doesn't cause any harm I believe it's still good to have for the 
> sake of "better safe than sorry". Especially for those plugins that seem 
> not to inherit from maven-plugins:
> - maven-release-plugin
> - maven-surefire-plugin
> - maven-jxr-plugin
> - maven-enforcer-plugin
> 
> Sure I should remove maven-plugin-plugin from the maven-parent?

No, I didn't think about these plugins. Keep it in there.

> 
> Benjamin

-- 
Dennis Lundberg

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


Re: svn commit: r637049 - /maven/pom/trunk/maven/pom.xml

Posted by Benjamin Bentmann <be...@udo.edu>.
> There's no need for maven-plugin-plugin in this pom. It is already in the 
> plugin parent pom.

If it doesn't cause any harm I believe it's still good to have for the sake 
of "better safe than sorry". Especially for those plugins that seem not to 
inherit from maven-plugins:
- maven-release-plugin
- maven-surefire-plugin
- maven-jxr-plugin
- maven-enforcer-plugin

Sure I should remove maven-plugin-plugin from the maven-parent?


Benjamin 


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


Re: svn commit: r637049 - /maven/pom/trunk/maven/pom.xml

Posted by Dennis Lundberg <de...@apache.org>.
There's no need for maven-plugin-plugin in this pom. It is already in 
the plugin parent pom.

bentmann@apache.org wrote:
> Author: bentmann
> Date: Fri Mar 14 03:55:47 2008
> New Revision: 637049
> 
> URL: http://svn.apache.org/viewvc?rev=637049&view=rev
> Log:
> o Locked down versions of maven-clean-plugin, maven-resources-plugin and maven-plugin-plugin
> 
> Modified:
>     maven/pom/trunk/maven/pom.xml
> 
> Modified: maven/pom/trunk/maven/pom.xml
> URL: http://svn.apache.org/viewvc/maven/pom/trunk/maven/pom.xml?rev=637049&r1=637048&r2=637049&view=diff
> ==============================================================================
> --- maven/pom/trunk/maven/pom.xml (original)
> +++ maven/pom/trunk/maven/pom.xml Fri Mar 14 03:55:47 2008
> @@ -118,6 +118,11 @@
>          <!-- set versions of common plugins for reproducibility, ordered alphabetically -->
>          <plugin>
>            <groupId>org.apache.maven.plugins</groupId>
> +          <artifactId>maven-clean-plugin</artifactId>
> +          <version>2.2</version>
> +        </plugin>
> +        <plugin>
> +          <groupId>org.apache.maven.plugins</groupId>
>            <artifactId>maven-compiler-plugin</artifactId>
>            <version>2.0.2</version>
>            <configuration>
> @@ -158,6 +163,11 @@
>            <artifactId>maven-javadoc-plugin</artifactId>
>            <version>2.3</version>
>          </plugin>
> +        <plugin>
> +          <groupId>org.apache.maven.plugins</groupId>
> +          <artifactId>maven-plugin-plugin</artifactId>
> +          <version>2.3</version>
> +        </plugin>
>          <!-- START SNIPPET: release-plugin-configuration -->
>          <plugin>
>            <groupId>org.apache.maven.plugins</groupId>
> @@ -179,6 +189,11 @@
>          </plugin>
>          <plugin>
>            <groupId>org.apache.maven.plugins</groupId>
> +          <artifactId>maven-resources-plugin</artifactId>
> +          <version>2.2</version>
> +        </plugin>
> +        <plugin>
> +          <groupId>org.apache.maven.plugins</groupId>
>            <artifactId>maven-site-plugin</artifactId>
>            <version>2.0-beta-6</version>
>          </plugin>
> @@ -518,7 +533,7 @@
>          <role>PMC Member</role>
>        </roles>
>        <timezone>+1</timezone>
> -    </developer>    
> +    </developer>
>      <developer>
>        <id>snicoll</id>
>        <name>Stephane Nicoll</name>
> 
> 
> 


-- 
Dennis Lundberg

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