Update dependency versions

In addition to updating the versions of numerous dependencies, this
commit also remove the dependency upon CGLib as it is no longer used.

Two test classes have been updated. One to cope with a new method in
Commons IO FileUtils which made a method call ambiguous, and one to
cope with API changes in the latest version of Quartz.
This commit is contained in:
Andy Wilkinson
2014-05-02 21:16:48 +01:00
committed by Michael Minella
parent e8962cec39
commit ecd8114a46
3 changed files with 77 additions and 96 deletions

View File

@@ -228,7 +228,7 @@ public class TransactionalStaxEventItemWriterTests {
* @return output file content as String
*/
private String outputFileContent() throws IOException {
return FileUtils.readFileToString(resource.getFile(), null);
return FileUtils.readFileToString(resource.getFile(), (String)null);
}
/**