// create directory by hand, as the Java plugin is not actually executing in our test
defaultResourcesDir.mkdirs();
log.info("Default resources dir: " + defaultResourcesDir.getAbsolutePath());
// Default webapp directory
WarPluginConvention warConvention = project.getConvention().getPlugin(WarPluginConvention.class);
File defaultWebappDirectory = warConvention.getWebAppDir();
// create directory by hand, as the War plugin is not actually executing in our test
defaultWebappDirectory.mkdirs();
log.info("Default webapp dir: " + defaultWebappDirectory.getAbsolutePath());
// Get and execute the rebel task