-
Notifications
You must be signed in to change notification settings - Fork 49
Support the Info-ZIP Unicode Path Extra Field. #41
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
Merged
ChristianSchulte
merged 3 commits into
codehaus-plexus:master
from
ChristianSchulte:master
May 26, 2016
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
* limitations under the License. | ||
*/ | ||
|
||
import java.io.InputStream; | ||
import java.io.IOException; | ||
import java.util.Map; | ||
import java.util.Properties; | ||
import java.util.jar.Attributes; | ||
|
@@ -33,25 +33,33 @@ class JdkManifestFactory | |
public static java.util.jar.Manifest getDefaultManifest() | ||
throws ArchiverException | ||
{ | ||
final java.util.jar.Manifest defaultManifest = new java.util.jar.Manifest(); | ||
defaultManifest.getMainAttributes().putValue( "Manifest-Version", "1.0" ); | ||
try | ||
{ | ||
final java.util.jar.Manifest defaultManifest = new java.util.jar.Manifest(); | ||
defaultManifest.getMainAttributes().putValue( "Manifest-Version", "1.0" ); | ||
|
||
String createdBy = "Plexus Archiver"; | ||
String createdBy = "Plexus Archiver"; | ||
|
||
InputStream inputStream = JdkManifestFactory.class.getResourceAsStream( "/META-INF/" | ||
+ "maven/org.codehaus.plexus/plexus-archiver/pom.properties" ); | ||
Properties properties = PropertyUtils.loadProperties( inputStream ); | ||
if ( properties != null ) | ||
{ | ||
String plexusArchiverVersion = properties.getProperty( "version" ); | ||
if ( plexusArchiverVersion != null ) | ||
final Properties properties = PropertyUtils.loadProperties( JdkManifestFactory.class.getResourceAsStream( | ||
"/META-INF/maven/org.codehaus.plexus/plexus-archiver/pom.properties" ) ); | ||
|
||
if ( properties != null ) | ||
{ | ||
createdBy += " " + plexusArchiverVersion; | ||
String plexusArchiverVersion = properties.getProperty( "version" ); | ||
if ( plexusArchiverVersion != null ) | ||
{ | ||
createdBy += " " + plexusArchiverVersion; | ||
} | ||
} | ||
} | ||
defaultManifest.getMainAttributes().putValue( "Created-By", createdBy ); | ||
|
||
return defaultManifest; | ||
defaultManifest.getMainAttributes().putValue( "Created-By", createdBy ); | ||
|
||
return defaultManifest; | ||
} | ||
catch ( final IOException e ) | ||
{ | ||
throw new ArchiverException( "Failure reading default manifest.", e ); | ||
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. This is obviously a wrong message now because no default manifest is read here. |
||
} | ||
} | ||
|
||
public static void merge( java.util.jar.Manifest target, java.util.jar.Manifest other, boolean overwriteMain ) | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 purpose serves this try catch block? No one throws an
IOException
. Not thePropertyUtils
.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.
I consider the swallow here was intentional. The local was actually borrowed from other spots where the version is omitted of the
pom.properties
could not be read. This needs a rewrite now.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.
Am 05/27/16 um 00:38 schrieb Michael Osipov:
PropertyUtils started throwing the exception with the latest patch
release of 'plexus-utils'.
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.
Am 05/27/16 um 00:57 schrieb Michael Osipov:
Just restored that behaviour. I even considered throwing an
AssertionError if the properties cannot be read. Omitting the version
shouldn't be an issue, of course.
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.
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.
Am 2016-05-27 um 02:51 schrieb Christian Schulte:
I am not convinced that
AssertionError
is the right thing becauseErrors
are reverved for the VM. Please search forpom.properties
inmaven-core
(DefaultRepositorySystemSessionFactory
andDefaultRuntimeInformation
). You will see the basic ida it was taken from.