project.setBuild(new Build());
project.getBuild().setDirectory(outputDir.getAbsolutePath());
System.out.println("OutputDir = " + project.getBuild().getDirectory());
mojo = new QueryTranslatorTranslateMojo();
mojo.setProject(project);
mojo.setLog(new DefaultLog(new ConsoleLogger(0, "junit")));
mojo.setDictionary(TestInfo.DICTIONARY_DERBY);
mojo.setDriverName(TestInfo.DRIVER_DERBY);
mojo.setUrl(TestInfo.URL_DERBY);
mojo.getPackageNames().add(TableA.class.getPackage().getName());
}