-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade the minimum required Java version to 7 and Plexus IO to 3.0.0 #56
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -351,7 +351,7 @@ else if ( isDirectory ) | |
|
||
if ( !isIgnorePermissions() && mode != null && !isDirectory ) | ||
{ | ||
ArchiveEntryUtils.chmod( f, mode, getLogger(), isUseJvmChmod() ); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Logger is not necessary anymore? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Alright! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, it was used to log the output of the 'chmod' command, so it is no |
||
ArchiveEntryUtils.chmod( f, mode ); | ||
} | ||
} | ||
catch ( final FileNotFoundException ex ) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about Surefire? That code did not change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
useJvmChmod
system property is no longer used, so there is no pointin setting it. That is why I've removed it from the Surefire configuration.