Author: elecharny
Date: Tue Dec  6 16:52:50 2011
New Revision: 1211016

URL: http://svn.apache.org/viewvc?rev=1211016&view=rev
Log:
Bumped up all the dependencies and plugin versions to the latest

Modified:
    mina/trunk/ldap/pom.xml
    mina/trunk/pom.xml

Modified: mina/trunk/ldap/pom.xml
URL: 
http://svn.apache.org/viewvc/mina/trunk/ldap/pom.xml?rev=1211016&r1=1211015&r2=1211016&view=diff
==============================================================================
--- mina/trunk/ldap/pom.xml (original)
+++ mina/trunk/ldap/pom.xml Tue Dec  6 16:52:50 2011
@@ -85,7 +85,6 @@
     <dependency>
       <groupId>com.google.guava</groupId>
       <artifactId>guava</artifactId>
-      <version>r09</version>
     </dependency>
   </dependencies>
 </project>

Modified: mina/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/mina/trunk/pom.xml?rev=1211016&r1=1211015&r2=1211016&view=diff
==============================================================================
--- mina/trunk/pom.xml (original)
+++ mina/trunk/pom.xml Tue Dec  6 16:52:50 2011
@@ -24,8 +24,9 @@
   <parent>
     <groupId>org.apache</groupId>
     <artifactId>apache</artifactId>
-    <version>4</version>
+    <version>9</version>
   </parent>
+
   <organization>
     <name>Apache MINA Project</name>
     <url>http://mina.apache.org/</url>
@@ -67,7 +68,12 @@
     </notifiers>
   </ciManagement>
 
-  <description>Apache MINA is a network application framework which helps 
users develop high performance and highly scalable network applications easily. 
It provides an abstract event-driven asynchronous API over various transports 
such as TCP/IP and UDP/IP via Java NIO.</description>
+  <description>
+    Apache MINA is a network application framework which helps users 
+    develop high performance and highly scalable network applications easily. 
+    It provides an abstract event-driven asynchronous API over various 
+    transports such as TCP/IP and UDP/IP via Java NIO.
+  </description>
 
   <licenses>
     <license>
@@ -78,11 +84,25 @@
   </licenses>
 
   <properties>
+    <!-- Dependencies versions ========================================== -->
+    <version.guava>10.0.1</version.guava>
+    <version.junit>4.10</version.junit>
+    <version.log4j>1.2.16</version.log4j>
+    <version.mockito-all>1.9.0-rc1</version.mockito-all>
     <version.slf4j.api>1.6.4</version.slf4j.api>
-    <version.slf4j.log4j12>1.6.4</version.slf4j.log4j12>
     <version.slf4j.jcl.over.slf4j>1.6.4</version.slf4j.jcl.over.slf4j>
-    <version.log4j>1.2.14</version.log4j>
-    <version.junit>4.7</version.junit>
+    <version.slf4j.log4j12>1.6.4</version.slf4j.log4j12>
+
+    <!-- Plugins versions =============================================== -->
+    <version.findbugs.maven.plugin>2.3.2</version.findbugs.maven.plugin>
+    <version.maven.bundle.plugin>2.3.5</version.maven.bundle.plugin>
+    <version.maven.compiler.plugin>2.3.2</version.maven.compiler.plugin>
+    <version.maven.javadoc.plugin>2.8</version.maven.javadoc.plugin>
+    <version.maven.jxr.plugin>2.3</version.maven.jxr.plugin>
+    <version.maven.release.plugin>2.2.1</version.maven.release.plugin>
+    <version.maven.source.plugin>2.1.2</version.maven.source.plugin>
+    <version.cobertura.maven.plugin>2.5.1</version.cobertura.maven.plugin>
+    <version.maven.eclipse.plugin>2.8</version.maven.eclipse.plugin>
   </properties>
 
 
@@ -131,10 +151,16 @@
       <dependency>
           <groupId>org.mockito</groupId>
           <artifactId>mockito-all</artifactId>
-          <version>1.8.5</version>
+          <version>${version.mockito-all}</version>
           <scope>test</scope>
       </dependency>
 
+      <dependency>
+        <groupId>com.google.guava</groupId>
+        <artifactId>guava</artifactId>
+        <version>${version.guava}</version>
+      </dependency>
+
     </dependencies>
   </dependencyManagement>
 
@@ -167,7 +193,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
-        <version>2.0.2</version>
+        <version>${version.maven.compiler.plugin}</version>
         <configuration>
           <encoding>UTF-8</encoding>
           <source>1.6</source>
@@ -177,10 +203,11 @@
           <showDeprecations>true</showDeprecations>
         </configuration>
       </plugin>
+  
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-source-plugin</artifactId>
-        <version>2.1.1</version>
+        <version>${version.maven.source.plugin}</version>
         <executions>
           <execution>
             <id>attach-source</id>
@@ -190,8 +217,10 @@
           </execution>
         </executions>
       </plugin>
+
       <plugin>
         <artifactId>maven-release-plugin</artifactId>
+        <version>${version.maven.release.plugin}</version>
         <configuration>
           <tagBase>
             https://svn.apache.org/repos/asf/mina/tags
@@ -202,7 +231,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>2.0.1</version>
+        <version>${version.maven.bundle.plugin}</version>
         <inherited>true</inherited>
         <extensions>true</extensions>
         <configuration>
@@ -212,10 +241,11 @@
           </instructions>
         </configuration>
       </plugin>
+
       <plugin>
           <groupId>org.codehaus.mojo</groupId>
           <artifactId>cobertura-maven-plugin</artifactId>
-          <version>2.4</version>
+          <version>${version.cobertura.maven.plugin}</version>
           <configuration>
               <formats>
                   <format>xml</format>
@@ -230,10 +260,11 @@
               </execution>
           </executions>
       </plugin>
+
       <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>findbugs-maven-plugin</artifactId>
-           <version>2.3.2</version>
+           <version>${version.findbugs.maven.plugin}</version>
            <configuration>
               <findbugsXmlOutput>true</findbugsXmlOutput>
               <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
@@ -248,7 +279,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
-        <version>2.6</version>
+        <version>${version.maven.javadoc.plugin}</version>
         <inherited>false</inherited>
         <configuration>
           <aggregate>true</aggregate>
@@ -269,7 +300,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jxr-plugin</artifactId>
-        <version>2.1</version>
+        <version>${version.maven.jxr.plugin}</version>
         <inherited>false</inherited>
         <configuration>
           <aggregate>true</aggregate>
@@ -279,6 +310,7 @@
           <docTitle>Apache MINA ${project.version} Cross Reference</docTitle>
         </configuration>
       </plugin>
+
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>rat-maven-plugin</artifactId>
@@ -295,6 +327,7 @@
       </plugin>
     </plugins>
   </reporting>
+
   <profiles>
     <!-- Specific profile used to append a string to project name -->
     <profile>
@@ -308,6 +341,7 @@
         <plugins>
           <plugin>
             <artifactId>maven-eclipse-plugin</artifactId>
+            <version>${version.maven.eclipse.plugin}</version>
             <configuration>
               <projectNameTemplate>
                 [artifactId]-${append.to.project.name}


Reply via email to