tasks.named('jar') {
doLast {
println "--- Contents of ${archiveFileName.get()} ---"
zipTree(archiveFile).visit { details ->
if (!details.directory) {
println " ${details.relativePath}"
}
}
println "------------------------------------------"
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)