}
Collection<String> appClientModuleClasspaths = module.getClassPath();
try {
// extract the client Jar file into a standalone packed jar file and add the contents to the output
URI moduleBase = new URI(module.getTargetPath());
appClientDeploymentContext.addIncludeAsPackedJar(moduleBase, moduleFile);
// add manifest class path entries to the app client context
addManifestClassPath(appClientDeploymentContext, appClientModule.getEarFile(), moduleFile, moduleBase);
} catch (IOException e) {
throw new DeploymentException("Unable to copy app client module jar into configuration: " + moduleFile.getName(), e);
} catch (URISyntaxException e) {