}
@Override
public void unpackArchive(File archive, File path) throws IOException {
try {
ArchiveDecompressor dec = applicationConfiguration.getArchiveDecompressor(archive);
FileUtils.forceMkdir(path);
dec.unpackFiles(archive, path);
} catch (Exception e) {
throw new IOException(e.getMessage());
}
}