Author: sebb
Date: Fri Oct 12 01:36:57 2012
New Revision: 1397413
URL: http://svn.apache.org/viewvc?rev=1397413&view=rev
Log:
IO 2.4 requires Java 1.6
Modified:
commons/proper/csv/trunk/pom.xml
Modified: commons/proper/csv/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/pom.xml?rev=1397413&r1=1397412&r2=1397413&view=diff
==============================================================================
--- commons/proper/csv/trunk/pom.xml (original)
+++ commons/proper/csv/trunk/pom.xml Fri Oct 12 01:36:57 2012
@@ -43,7 +43,8 @@ CSV files of various types.
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
- <version>2.4</version>
+ <!-- 2.2 is last version compatible with Java 1.5 -->
+ <version>2.2</version>
<scope>test</scope>
</dependency>
</dependencies>
|