remove username from MANIFEST.MF in build artifacts (#12096)

This commit is contained in:
Michael Gibney 2023-01-23 16:45:38 -05:00 committed by GitHub
parent 832552e0ac
commit d4006c0362
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ subprojects {
if (snapshotBuild) {
return "${project.version} ${gitRev} [snapshot build, details omitted]"
} else {
return "${project.version} ${gitRev} - ${System.properties['user.name']} - ${buildDate} ${buildTime}"
return "${project.version} ${gitRev} - ${buildDate} ${buildTime}"
}
}