Author: ggregory Date: Mon May 14 12:19:22 2012 New Revision: 1338176 URL: http://svn.apache.org/viewvc?rev=1338176&view=rev Log: Back out [VFS-415] Update VFS requirement to Java 1.6. Java 6 requirement came in as a dependency on commons-io 2.3 which is only used for testing.
Modified: commons/proper/vfs/trunk/pom.xml commons/proper/vfs/trunk/src/changes/changes.xml Modified: commons/proper/vfs/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/pom.xml?rev=1338176&r1=1338175&r2=1338176&view=diff ============================================================================== --- commons/proper/vfs/trunk/pom.xml (original) +++ commons/proper/vfs/trunk/pom.xml Mon May 14 12:19:22 2012 @@ -128,8 +128,8 @@ <commons.binary.suffix /> <commons.jira.id>VFS</commons.jira.id> <commons.jira.pid>12310495</commons.jira.pid> - <maven.compile.source>1.6</maven.compile.source> - <maven.compile.target>1.6</maven.compile.target> + <maven.compile.source>1.5</maven.compile.source> + <maven.compile.target>1.5</maven.compile.target> <commons.release.name>commons-vfs-${commons.release.version}</commons.release.name> <vfs.parent.dir>${basedir}</vfs.parent.dir> </properties> @@ -267,7 +267,7 @@ <artifactId>maven-pmd-plugin</artifactId> <version>2.7.1</version> <configuration> - <targetJdk>1.6</targetJdk> + <targetJdk>1.5</targetJdk> </configuration> </plugin> <!-- cobertura breaks because it cannot parse annotations in methods. --> @@ -418,7 +418,7 @@ <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> - <version>2.3</version> + <version>2.2</version> <scope>test</scope> </dependency> <!-- Test HTTP with Apache HttpComponent Core --> Modified: commons/proper/vfs/trunk/src/changes/changes.xml URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/src/changes/changes.xml?rev=1338176&r1=1338175&r2=1338176&view=diff ============================================================================== --- commons/proper/vfs/trunk/src/changes/changes.xml (original) +++ commons/proper/vfs/trunk/src/changes/changes.xml Mon May 14 12:19:22 2012 @@ -26,9 +26,6 @@ <action issue="VFS-416" dev="ggregory" type="update"> [SFTP] Update Jsch to version 0.1.48 from 0.1.47. </action> - <action issue="VFS-415" dev="ggregory" type="update"> - Update VFS requirement to Java 1.6. - </action> <action issue="VFS-296" dev="ggregory" type="add" due-to="andreasp"> [FTP] FTP socket timeout setting doesn't work if connect hangs. </action>