argsList.add(new File(baseDir).getAbsolutePath());
try {
System.out.println("Running Setup");
Setup setup = new Setup();
setup.execute((String[]) argsList.toArray(new String[argsList.size()]));
} catch (Exception e) {
throw new BuildException("Caught Setup exception: " + e.getMessage(), e);
}
}