[
https://issues.apache.org/jira/browse/MJAR-241?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Karl Heinz Marbaise closed MJAR-241.
------------------------------------
Resolution: Fixed
Should be fixed related to MJAR-252
> Jar package does not have a size in ZipEntry
> --------------------------------------------
>
> Key: MJAR-241
> URL: https://issues.apache.org/jira/browse/MJAR-241
> Project: Maven JAR Plugin
> Issue Type: Bug
> Affects Versions: 2.5, 2.6, 3.0.2
> Environment: Windows 7
> Maven 3.3.9
> Reporter: Kaitlyn Lemmons
> Priority: Major
> Fix For: 3.1.1
>
>
> Since version 2.5, jars output by the maven-jar-plugin do not have a size
> that Java's standard ZipEntry class can read. Version 2.4, however, outputs a
> jar with sizes that works just fine.
> Testing included versions 2.4, 2.5, 2.6, and 3.0.2 - only version 2.4 outputs
> a jar with sizes according to ZipEntry. All configuration was kept constant;
> only the version was altered between each test.
> Sample code is below:
> {code:java}
> ZipInputStream zis = new ZipInputStream(new FileInputStream(jarFile));
> ZipEntry entry = zis.getNextEntry();
> System.out.println(entry.getSize());
> {code}
> Output is -1 for versions 2.5+ and a correct >0 size for version 2.4.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)