// TODO fix this hack!!
try {
File tmp = File.createTempFile(getClass().getName(), "prime");
tmp.deleteOnExit();
deriv = new CCGbankDerivation(new FileReader(tmp));
}
catch(IOException e) {
throw new BuildException("Problem priming parser: "
+ e.getMessage(), e, getLocation());
}