use of org.eclipse.tycho.plugins.tar.TarGzArchiver in project tycho by eclipse.
the class ProductArchiverMojo method createCommonsCompressTarGz.
private void createCommonsCompressTarGz(File productArchive, File sourceDir) throws IOException {
TarGzArchiver archiver = new TarGzArchiver();
archiver.setLog(getLog());
archiver.addDirectory(sourceDir);
archiver.setDestFile(productArchive);
archiver.createArchive();
}
Aggregations