You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mb...@apache.org on 2010/08/04 00:51:49 UTC

svn commit: r982059 - /commons/sandbox/functor/trunk/pom.xml

Author: mbenson
Date: Tue Aug  3 22:51:49 2010
New Revision: 982059

URL: http://svn.apache.org/viewvc?rev=982059&view=rev
Log:
upgrade checkstyle and cobertura plugins

Modified:
    commons/sandbox/functor/trunk/pom.xml

Modified: commons/sandbox/functor/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/pom.xml?rev=982059&r1=982058&r2=982059&view=diff
==============================================================================
--- commons/sandbox/functor/trunk/pom.xml (original)
+++ commons/sandbox/functor/trunk/pom.xml Tue Aug  3 22:51:49 2010
@@ -33,7 +33,7 @@
   <description>
     A "functor" is an entity that serves the role of a function
     but can be operated upon like an object.  Commons Functor
-    defines common functor and functor-related iterfaces, 
+    defines common functor and functor-related interfaces,
     implementations, and utilities.
   </description>
   <url>http://commons.apache.org/sandbox/functor/</url>
@@ -115,11 +115,16 @@
     <plugins>
       <plugin>
         <artifactId>maven-checkstyle-plugin</artifactId>
-        <version>2.1</version>
+        <version>2.2</version>
         <configuration>
           <configLocation>${basedir}/checkstyle.xml</configLocation>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>cobertura-maven-plugin</artifactId>
+        <version>2.4</version>
+      </plugin>
     </plugins>
   </reporting>
 </project>