You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Dawid Weiss (JIRA)" <ji...@apache.org> on 2016/04/06 16:50:25 UTC

[jira] [Resolved] (MJAR-212) AIOOB in AbstractZipArchiver on Java9 EA (jigsaw)

     [ https://issues.apache.org/jira/browse/MJAR-212?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dawid Weiss resolved MJAR-212.
------------------------------
    Resolution: Invalid

Sorry, this has been fixed here:
https://github.com/codehaus-plexus/plexus-archiver/commit/c0357c5234fedb958bc2dd93a8397424bdcea7cf

> AIOOB in AbstractZipArchiver on Java9 EA (jigsaw)
> -------------------------------------------------
>
>                 Key: MJAR-212
>                 URL: https://issues.apache.org/jira/browse/MJAR-212
>             Project: Maven JAR Plugin
>          Issue Type: Bug
>            Reporter: Dawid Weiss
>            Priority: Blocker
>
> Java9 changed the {{java.version}} property's naming scheme (see http://openjdk.java.net/jeps/223). I tried our projects with build {{9-ea+112}} and plexus jar archiver fails with an AIIOOB, specifically on this line:
> {code}
> private static final boolean isJava7OrLower = Integer.parseInt(System.getProperty("java.version").split("\\.")[1]) <= 7;
> {code}
> https://github.com/sonatype/plexus-archiver/blob/master/src/main/java/org/codehaus/plexus/archiver/zip/AbstractZipArchiver.java#L116
> The reason seems obvious. The fix would be based on better version number parsing (see the JEP).



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)