// --- Added logic to display the Manifest ---
println "MANIFEST ENTRIES:"
java.util.jar.JarFile jf = new java.util.jar.JarFile(jarFile)
def manifestAttributes = jf.manifest.mainAttributes
manifestAttributes.each { key, value ->
println " ${key}: ${value}"
}
jf.close() // Always close the file handle
println "------------------------------------------------------------"
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)