in src/main/java/org/apache/maven/plugins/rar/RarMojo.java [475:485]
private void includeCustomManifestFile() throws IOException {
File customManifestFile = manifestFile;
if (!customManifestFile.exists()) {
getLog().info("Could not find manifest file: " + manifestFile + " - Generating one");
} else {
getLog().info("Including custom manifest file[" + customManifestFile + "]");
archive.setManifestFile(customManifestFile);
File metaInfDir = new File(getBuildDir(), "META-INF");
FileUtils.copyFileToDirectory(customManifestFile, metaInfDir);
}
}