computedConfigDir = this.configDir;
}
// Copy the default JBoss server config directory into our custom
// server directory.
Copy copy = new Copy();
copy.setTaskName("cactus");
copy.setProject(getProject());
copy.setTodir(theCustomServerDir);
FileSet srcFiles = new FileSet();
srcFiles.setDir(new File(computedConfigDir, this.config));
copy.addFileset(srcFiles);
copy.execute();
// Deploy the web-app by copying the WAR file into the webapps
// directory
File deployDir = new File(theCustomServerDir, "/deploy");
fileUtils.copyFile(getDeployableFile().getFile(),