public void setUp() throws MalformedURLException {
File tmpDir = new File(System.getProperty("java.io.tmpdir"));
downloadDir = new File(tmpDir, "downloads");
downloadDir.mkdir();
task = new GetTask();
task.setBaseSourceUrls("http://ibiblio.org/pub/packages/maven2/,http://repository.jboss.com/maven2/");
task.setToDir(downloadDir);
task.setDependencies(new File("resources/test-dependencies.txt"));
task.setProject(new Project());
}