You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by tr...@apache.org on 2007/04/13 03:51:30 UTC

svn commit: r528312 - in /mina: branches/1.0/core/ branches/1.0/example/ branches/1.0/filter-codec-netty/ branches/1.0/filter-compression/ branches/1.0/filter-ssl/ branches/1.0/integration-spring/ branches/1.0/java5/ branches/1.1/core/ branches/1.1/exa...

Author: trustin
Date: Thu Apr 12 18:51:28 2007
New Revision: 528312

URL: http://svn.apache.org/viewvc?view=rev&rev=528312
Log:
Updated dependency information


Modified:
    mina/branches/1.0/core/pom.xml
    mina/branches/1.0/example/pom.xml
    mina/branches/1.0/filter-codec-netty/pom.xml
    mina/branches/1.0/filter-compression/pom.xml
    mina/branches/1.0/filter-ssl/pom.xml
    mina/branches/1.0/integration-spring/pom.xml
    mina/branches/1.0/java5/pom.xml
    mina/branches/1.1/core/pom.xml
    mina/branches/1.1/example/pom.xml
    mina/branches/1.1/filter-codec-netty/pom.xml
    mina/branches/1.1/filter-compression/pom.xml
    mina/branches/1.1/filter-ssl/pom.xml
    mina/branches/1.1/integration-spring/pom.xml
    mina/trunk/core/pom.xml
    mina/trunk/example/pom.xml
    mina/trunk/filter-codec-netty/pom.xml
    mina/trunk/filter-compression/pom.xml
    mina/trunk/filter-ssl/pom.xml
    mina/trunk/integration-spring/pom.xml
    mina/trunk/pom.xml

Modified: mina/branches/1.0/core/pom.xml
URL: http://svn.apache.org/viewvc/mina/branches/1.0/core/pom.xml?view=diff&rev=528312&r1=528311&r2=528312
==============================================================================
--- mina/branches/1.0/core/pom.xml (original)
+++ mina/branches/1.0/core/pom.xml Thu Apr 12 18:51:28 2007
@@ -15,21 +15,21 @@
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-api</artifactId>
-      <version>1.2</version>
+      <version>1.3.0</version>
       <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-simple</artifactId>
-      <version>1.2</version>
-      <scope>provided</scope>
+      <version>1.3.0</version>
+      <scope>test</scope>
     </dependency>
 
     <dependency>
       <groupId>backport-util-concurrent</groupId>
       <artifactId>backport-util-concurrent</artifactId>
-      <version>2.2</version>
+      <version>3.0</version>
       <scope>compile</scope>
     </dependency>
 

Modified: mina/branches/1.0/example/pom.xml
URL: http://svn.apache.org/viewvc/mina/branches/1.0/example/pom.xml?view=diff&rev=528312&r1=528311&r2=528312
==============================================================================
--- mina/branches/1.0/example/pom.xml (original)
+++ mina/branches/1.0/example/pom.xml Thu Apr 12 18:51:28 2007
@@ -15,37 +15,48 @@
       <groupId>org.apache.mina</groupId>
       <artifactId>mina-filter-ssl</artifactId>
       <version>${pom.version}</version>
+      <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.apache.mina</groupId>
       <artifactId>mina-integration-spring</artifactId>
       <version>${pom.version}</version>
+      <scope>compile</scope>
     </dependency>
     
     <dependency>
       <groupId>org.slf4j</groupId>
-      <artifactId>nlog4j</artifactId>
-      <version>1.2.25</version>
-      <scope>provided</scope>
+      <artifactId>slf4j-log4j12</artifactId>
+      <version>1.3.0</version>
+      <scope>runtime</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <version>1.2.14</version>
+      <scope>runtime</scope>
     </dependency>
 
     <dependency>
       <groupId>org.springframework</groupId>
       <artifactId>spring-context</artifactId>
-      <version>1.2.8</version>
+      <version>2.0.4</version>
+      <scope>compile</scope>
     </dependency>
     
     <dependency>
       <groupId>org.springframework</groupId>
       <artifactId>spring-support</artifactId>
-      <version>1.2.8</version>
+      <version>2.0.4</version>
+      <scope>compile</scope>
     </dependency>
     
     <dependency>
       <groupId>commons-net</groupId>
       <artifactId>commons-net</artifactId>
-      <version>1.3.0</version>
+      <version>1.4.1</version>
       <scope>test</scope>
     </dependency>
     

Modified: mina/branches/1.0/filter-codec-netty/pom.xml
URL: http://svn.apache.org/viewvc/mina/branches/1.0/filter-codec-netty/pom.xml?view=diff&rev=528312&r1=528311&r2=528312
==============================================================================
--- mina/branches/1.0/filter-codec-netty/pom.xml (original)
+++ mina/branches/1.0/filter-codec-netty/pom.xml Thu Apr 12 18:51:28 2007
@@ -37,19 +37,21 @@
       <groupId>tl-netty2</groupId>
       <artifactId>tl-netty2</artifactId>
       <version>1.9.2</version>
+      <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.apache.mina</groupId>
       <artifactId>mina-core</artifactId>
       <version>${pom.version}</version>
+      <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-simple</artifactId>
-      <version>1.2</version>
-      <scope>provided</scope>
+      <version>1.3.0</version>
+      <scope>test</scope>
     </dependency>
 
   </dependencies>

Modified: mina/branches/1.0/filter-compression/pom.xml
URL: http://svn.apache.org/viewvc/mina/branches/1.0/filter-compression/pom.xml?view=diff&rev=528312&r1=528311&r2=528312
==============================================================================
--- mina/branches/1.0/filter-compression/pom.xml (original)
+++ mina/branches/1.0/filter-compression/pom.xml Thu Apr 12 18:51:28 2007
@@ -16,13 +16,14 @@
       <groupId>org.apache.mina</groupId>
       <artifactId>mina-core</artifactId>
       <version>${pom.version}</version>
+      <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-simple</artifactId>
-      <version>1.2</version>
-      <scope>provided</scope>
+      <version>1.3.0</version>
+      <scope>test</scope>
     </dependency>
 
     <dependency>

Modified: mina/branches/1.0/filter-ssl/pom.xml
URL: http://svn.apache.org/viewvc/mina/branches/1.0/filter-ssl/pom.xml?view=diff&rev=528312&r1=528311&r2=528312
==============================================================================
--- mina/branches/1.0/filter-ssl/pom.xml (original)
+++ mina/branches/1.0/filter-ssl/pom.xml Thu Apr 12 18:51:28 2007
@@ -16,13 +16,14 @@
       <groupId>org.apache.mina</groupId>
       <artifactId>mina-core</artifactId>
       <version>${pom.version}</version>
+      <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-simple</artifactId>
-      <version>1.2</version>
-      <scope>provided</scope>
+      <version>1.3.0</version>
+      <scope>test</scope>
     </dependency>
 
   </dependencies>

Modified: mina/branches/1.0/integration-spring/pom.xml
URL: http://svn.apache.org/viewvc/mina/branches/1.0/integration-spring/pom.xml?view=diff&rev=528312&r1=528311&r2=528312
==============================================================================
--- mina/branches/1.0/integration-spring/pom.xml (original)
+++ mina/branches/1.0/integration-spring/pom.xml Thu Apr 12 18:51:28 2007
@@ -15,25 +15,26 @@
       <groupId>org.apache.mina</groupId>
       <artifactId>mina-filter-ssl</artifactId>
       <version>${pom.version}</version>
+      <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-simple</artifactId>
-      <version>1.2</version>
-      <scope>provided</scope>
+      <version>1.3.0</version>
+      <scope>test</scope>
     </dependency>
 
     <dependency>
       <groupId>org.springframework</groupId>
       <artifactId>spring-beans</artifactId>
-      <version>1.2.8</version>
+      <version>2.0.4</version>
     </dependency>
 
     <dependency>
       <groupId>org.springframework</groupId>
       <artifactId>spring-core</artifactId>
-      <version>1.2.8</version>
+      <version>2.0.4</version>
     </dependency>
 
     <dependency>
@@ -53,7 +54,7 @@
     <dependency>
       <groupId>commons-net</groupId>
       <artifactId>commons-net</artifactId>
-      <version>1.3.0</version>
+      <version>1.4.1</version>
       <scope>test</scope>
     </dependency>
     

Modified: mina/branches/1.0/java5/pom.xml
URL: http://svn.apache.org/viewvc/mina/branches/1.0/java5/pom.xml?view=diff&rev=528312&r1=528311&r2=528312
==============================================================================
--- mina/branches/1.0/java5/pom.xml (original)
+++ mina/branches/1.0/java5/pom.xml Thu Apr 12 18:51:28 2007
@@ -16,13 +16,14 @@
       <groupId>org.apache.mina</groupId>
       <artifactId>mina-core</artifactId>
       <version>${pom.version}</version>
+      <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-simple</artifactId>
-      <version>1.2</version>
-      <scope>provided</scope>
+      <version>1.3.0</version>
+      <scope>test</scope>
     </dependency>
 
   </dependencies>

Modified: mina/branches/1.1/core/pom.xml
URL: http://svn.apache.org/viewvc/mina/branches/1.1/core/pom.xml?view=diff&rev=528312&r1=528311&r2=528312
==============================================================================
--- mina/branches/1.1/core/pom.xml (original)
+++ mina/branches/1.1/core/pom.xml Thu Apr 12 18:51:28 2007
@@ -15,15 +15,15 @@
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-api</artifactId>
-      <version>1.2</version>
+      <version>1.3.0</version>
       <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-simple</artifactId>
-      <version>1.2</version>
-      <scope>provided</scope>
+      <version>1.3.0</version>
+      <scope>test</scope>
     </dependency>
 
     <dependency>

Modified: mina/branches/1.1/example/pom.xml
URL: http://svn.apache.org/viewvc/mina/branches/1.1/example/pom.xml?view=diff&rev=528312&r1=528311&r2=528312
==============================================================================
--- mina/branches/1.1/example/pom.xml (original)
+++ mina/branches/1.1/example/pom.xml Thu Apr 12 18:51:28 2007
@@ -15,37 +15,48 @@
       <groupId>org.apache.mina</groupId>
       <artifactId>mina-filter-ssl</artifactId>
       <version>${pom.version}</version>
+      <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.apache.mina</groupId>
       <artifactId>mina-integration-spring</artifactId>
       <version>${pom.version}</version>
+      <scope>compile</scope>
     </dependency>
     
     <dependency>
       <groupId>org.slf4j</groupId>
-      <artifactId>nlog4j</artifactId>
-      <version>1.2.25</version>
-      <scope>provided</scope>
+      <artifactId>slf4j-log4j12</artifactId>
+      <version>1.3.0</version>
+      <scope>runtime</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <version>1.2.14</version>
+      <scope>runtime</scope>
     </dependency>
 
     <dependency>
       <groupId>org.springframework</groupId>
       <artifactId>spring-context</artifactId>
-      <version>1.2.8</version>
+      <version>2.0.4</version>
+      <scope>compile</scope>
     </dependency>
     
     <dependency>
       <groupId>org.springframework</groupId>
       <artifactId>spring-support</artifactId>
-      <version>1.2.8</version>
+      <version>2.0.4</version>
+      <scope>compile</scope>
     </dependency>
     
     <dependency>
       <groupId>commons-net</groupId>
       <artifactId>commons-net</artifactId>
-      <version>1.3.0</version>
+      <version>1.4.1</version>
       <scope>test</scope>
     </dependency>
     

Modified: mina/branches/1.1/filter-codec-netty/pom.xml
URL: http://svn.apache.org/viewvc/mina/branches/1.1/filter-codec-netty/pom.xml?view=diff&rev=528312&r1=528311&r2=528312
==============================================================================
--- mina/branches/1.1/filter-codec-netty/pom.xml (original)
+++ mina/branches/1.1/filter-codec-netty/pom.xml Thu Apr 12 18:51:28 2007
@@ -37,19 +37,21 @@
       <groupId>tl-netty2</groupId>
       <artifactId>tl-netty2</artifactId>
       <version>1.9.2</version>
+      <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.apache.mina</groupId>
       <artifactId>mina-core</artifactId>
       <version>${pom.version}</version>
+      <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-simple</artifactId>
-      <version>1.2</version>
-      <scope>provided</scope>
+      <version>1.3.0</version>
+      <scope>test</scope>
     </dependency>
 
   </dependencies>

Modified: mina/branches/1.1/filter-compression/pom.xml
URL: http://svn.apache.org/viewvc/mina/branches/1.1/filter-compression/pom.xml?view=diff&rev=528312&r1=528311&r2=528312
==============================================================================
--- mina/branches/1.1/filter-compression/pom.xml (original)
+++ mina/branches/1.1/filter-compression/pom.xml Thu Apr 12 18:51:28 2007
@@ -16,13 +16,14 @@
       <groupId>org.apache.mina</groupId>
       <artifactId>mina-core</artifactId>
       <version>${pom.version}</version>
+      <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-simple</artifactId>
-      <version>1.2</version>
-      <scope>provided</scope>
+      <version>1.3.0</version>
+      <scope>test</scope>
     </dependency>
 
     <dependency>

Modified: mina/branches/1.1/filter-ssl/pom.xml
URL: http://svn.apache.org/viewvc/mina/branches/1.1/filter-ssl/pom.xml?view=diff&rev=528312&r1=528311&r2=528312
==============================================================================
--- mina/branches/1.1/filter-ssl/pom.xml (original)
+++ mina/branches/1.1/filter-ssl/pom.xml Thu Apr 12 18:51:28 2007
@@ -16,13 +16,14 @@
       <groupId>org.apache.mina</groupId>
       <artifactId>mina-core</artifactId>
       <version>${pom.version}</version>
+      <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-simple</artifactId>
-      <version>1.2</version>
-      <scope>provided</scope>
+      <version>1.3.0</version>
+      <scope>test</scope>
     </dependency>
 
   </dependencies>

Modified: mina/branches/1.1/integration-spring/pom.xml
URL: http://svn.apache.org/viewvc/mina/branches/1.1/integration-spring/pom.xml?view=diff&rev=528312&r1=528311&r2=528312
==============================================================================
--- mina/branches/1.1/integration-spring/pom.xml (original)
+++ mina/branches/1.1/integration-spring/pom.xml Thu Apr 12 18:51:28 2007
@@ -15,25 +15,26 @@
       <groupId>org.apache.mina</groupId>
       <artifactId>mina-filter-ssl</artifactId>
       <version>${pom.version}</version>
+      <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-simple</artifactId>
-      <version>1.2</version>
-      <scope>provided</scope>
+      <version>1.3.0</version>
+      <scope>test</scope>
     </dependency>
 
     <dependency>
       <groupId>org.springframework</groupId>
       <artifactId>spring-beans</artifactId>
-      <version>1.2.8</version>
+      <version>2.0.4</version>
     </dependency>
 
     <dependency>
       <groupId>org.springframework</groupId>
       <artifactId>spring-core</artifactId>
-      <version>1.2.8</version>
+      <version>2.0.4</version>
     </dependency>
 
     <dependency>
@@ -53,7 +54,7 @@
     <dependency>
       <groupId>commons-net</groupId>
       <artifactId>commons-net</artifactId>
-      <version>1.3.0</version>
+      <version>1.4.1</version>
       <scope>test</scope>
     </dependency>
     

Modified: mina/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/mina/trunk/core/pom.xml?view=diff&rev=528312&r1=528311&r2=528312
==============================================================================
--- mina/trunk/core/pom.xml (original)
+++ mina/trunk/core/pom.xml Thu Apr 12 18:51:28 2007
@@ -31,15 +31,15 @@
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-api</artifactId>
-      <version>1.2</version>
+      <version>1.3.0</version>
       <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-simple</artifactId>
-      <version>1.2</version>
-      <scope>provided</scope>
+      <version>1.3.0</version>
+      <scope>test</scope>
     </dependency>
 
     <dependency>

Modified: mina/trunk/example/pom.xml
URL: http://svn.apache.org/viewvc/mina/trunk/example/pom.xml?view=diff&rev=528312&r1=528311&r2=528312
==============================================================================
--- mina/trunk/example/pom.xml (original)
+++ mina/trunk/example/pom.xml Thu Apr 12 18:51:28 2007
@@ -14,37 +14,48 @@
       <groupId>org.apache.mina</groupId>
       <artifactId>mina-filter-ssl</artifactId>
       <version>${pom.version}</version>
+      <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.apache.mina</groupId>
       <artifactId>mina-integration-spring</artifactId>
       <version>${pom.version}</version>
+      <scope>compile</scope>
     </dependency>
     
     <dependency>
       <groupId>org.slf4j</groupId>
-      <artifactId>nlog4j</artifactId>
-      <version>1.2.25</version>
-      <scope>provided</scope>
+      <artifactId>slf4j-log4j12</artifactId>
+      <version>1.3.0</version>
+      <scope>runtime</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <version>1.2.14</version>
+      <scope>runtime</scope>
     </dependency>
 
     <dependency>
       <groupId>org.springframework</groupId>
       <artifactId>spring-context</artifactId>
-      <version>1.2.8</version>
+      <version>2.0.4</version>
+      <scope>compile</scope>
     </dependency>
     
     <dependency>
       <groupId>org.springframework</groupId>
       <artifactId>spring-support</artifactId>
-      <version>1.2.8</version>
+      <version>2.0.4</version>
+      <scope>compile</scope>
     </dependency>
     
     <dependency>
       <groupId>commons-net</groupId>
       <artifactId>commons-net</artifactId>
-      <version>1.3.0</version>
+      <version>1.4.1</version>
       <scope>test</scope>
     </dependency>
     

Modified: mina/trunk/filter-codec-netty/pom.xml
URL: http://svn.apache.org/viewvc/mina/trunk/filter-codec-netty/pom.xml?view=diff&rev=528312&r1=528311&r2=528312
==============================================================================
--- mina/trunk/filter-codec-netty/pom.xml (original)
+++ mina/trunk/filter-codec-netty/pom.xml Thu Apr 12 18:51:28 2007
@@ -37,19 +37,21 @@
       <groupId>tl-netty2</groupId>
       <artifactId>tl-netty2</artifactId>
       <version>1.9.2</version>
+      <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.apache.mina</groupId>
       <artifactId>mina-core</artifactId>
       <version>${pom.version}</version>
+      <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-simple</artifactId>
-      <version>1.2</version>
-      <scope>provided</scope>
+      <version>1.3.0</version>
+      <scope>test</scope>
     </dependency>
 
   </dependencies>

Modified: mina/trunk/filter-compression/pom.xml
URL: http://svn.apache.org/viewvc/mina/trunk/filter-compression/pom.xml?view=diff&rev=528312&r1=528311&r2=528312
==============================================================================
--- mina/trunk/filter-compression/pom.xml (original)
+++ mina/trunk/filter-compression/pom.xml Thu Apr 12 18:51:28 2007
@@ -16,13 +16,14 @@
       <groupId>org.apache.mina</groupId>
       <artifactId>mina-core</artifactId>
       <version>${pom.version}</version>
+      <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-simple</artifactId>
-      <version>1.2</version>
-      <scope>provided</scope>
+      <version>1.3.0</version>
+      <scope>test</scope>
     </dependency>
 
     <dependency>

Modified: mina/trunk/filter-ssl/pom.xml
URL: http://svn.apache.org/viewvc/mina/trunk/filter-ssl/pom.xml?view=diff&rev=528312&r1=528311&r2=528312
==============================================================================
--- mina/trunk/filter-ssl/pom.xml (original)
+++ mina/trunk/filter-ssl/pom.xml Thu Apr 12 18:51:28 2007
@@ -16,13 +16,14 @@
       <groupId>org.apache.mina</groupId>
       <artifactId>mina-core</artifactId>
       <version>${pom.version}</version>
+      <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-simple</artifactId>
-      <version>1.2</version>
-      <scope>provided</scope>
+      <version>1.3.0</version>
+      <scope>test</scope>
     </dependency>
 
   </dependencies>

Modified: mina/trunk/integration-spring/pom.xml
URL: http://svn.apache.org/viewvc/mina/trunk/integration-spring/pom.xml?view=diff&rev=528312&r1=528311&r2=528312
==============================================================================
--- mina/trunk/integration-spring/pom.xml (original)
+++ mina/trunk/integration-spring/pom.xml Thu Apr 12 18:51:28 2007
@@ -15,25 +15,26 @@
       <groupId>org.apache.mina</groupId>
       <artifactId>mina-filter-ssl</artifactId>
       <version>${pom.version}</version>
+      <scope>compile</scope>
     </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-simple</artifactId>
-      <version>1.2</version>
-      <scope>provided</scope>
+      <version>1.3.0</version>
+      <scope>test</scope>
     </dependency>
 
     <dependency>
       <groupId>org.springframework</groupId>
       <artifactId>spring-beans</artifactId>
-      <version>1.2.8</version>
+      <version>2.0.4</version>
     </dependency>
 
     <dependency>
       <groupId>org.springframework</groupId>
       <artifactId>spring-core</artifactId>
-      <version>1.2.8</version>
+      <version>2.0.4</version>
     </dependency>
 
     <dependency>
@@ -53,7 +54,7 @@
     <dependency>
       <groupId>commons-net</groupId>
       <artifactId>commons-net</artifactId>
-      <version>1.3.0</version>
+      <version>1.4.1</version>
       <scope>test</scope>
     </dependency>
     

Modified: mina/trunk/pom.xml
URL: http://svn.apache.org/viewvc/mina/trunk/pom.xml?view=diff&rev=528312&r1=528311&r2=528312
==============================================================================
--- mina/trunk/pom.xml (original)
+++ mina/trunk/pom.xml Thu Apr 12 18:51:28 2007
@@ -64,7 +64,7 @@
    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>4.1</version>
+      <version>4.3.1</version>
       <scope>test</scope>
     </dependency>
   </dependencies>