File archive2 = new File(getClass().getResource("deb/data.tar.bz2").toURI());
File archive3 = new File(getClass().getResource("deb/data.zip").toURI());
File directory = new File(getClass().getResource("deb/data").toURI());
DataProducer[] data = new DataProducer[] {
new DataProducerArchive(archive1, null, null, null),
new DataProducerArchive(archive2, null, null, null),
new DataProducerArchive(archive3, null, null, null),
new DataProducerDirectory(directory, null, new String[] { "**/.svn/**" }, null),
new DataProducerLink("/link/path-element.ext", "/link/target-element.ext", true, null, null, null)
};
File deb = File.createTempFile("jdeb", ".deb");