We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1a4ce3 commit 5da37a1Copy full SHA for 5da37a1
src/main/java/org/codehaus/plexus/archiver/jar/JarArchiver.java
@@ -319,7 +319,16 @@ protected boolean hasVirtualFiles()
319
|| super.hasVirtualFiles();
320
}
321
322
- private Manifest createManifest()
+ /**
323
+ * Creates the manifest to be added to the JAR archive.
324
+ * Sub-classes may choose to override this method
325
+ * in order to inspect or modify the JAR manifest file.
326
+ *
327
+ * @return the manifest for the JAR archive.
328
329
+ * @throws ArchiverException
330
+ */
331
+ protected Manifest createManifest()
332
throws ArchiverException
333
{
334
Manifest finalManifest = Manifest.getDefaultManifest();
0 commit comments