[ 
https://issues.apache.org/jira/browse/CB-14101?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16540073#comment-16540073
 ] 

ASF subversion and git services commented on CB-14101:
------------------------------------------------------

Commit 3570ca8113fc5847ad5fed365e2ea9937d3d988e in cordova-android's branch 
refs/heads/7.1.x from Raphael von der Grün
[ https://gitbox.apache.org/repos/asf?p=cordova-android.git;h=3570ca8 ]

CB-14101 Fix Java version check for Java >= 9 (#446)

This also checks that we have exactly 1.8 since nothing else works with
the Android SDK. The user facing error was updated accordingly.

> check_reqs.js does not recognize java version
> ---------------------------------------------
>
>                 Key: CB-14101
>                 URL: https://issues.apache.org/jira/browse/CB-14101
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: cordova-android
>    Affects Versions: 8.0.0
>         Environment: OS = Arch Linux
> JAVA = javac 9.0.4
> CORDOVA = 8.0.0
>            Reporter: Arne Simon
>            Assignee: Raphael
>            Priority: Major
>
> The java version  i am using produces following output.
> {code}
> > javac -version 
> javac 9.0.4
> {code}
>  
> The error happens in two points:
> {code:java}
> // We use tryCommand with catchStderr = true, because
> // javac writes version info to stderr instead of stdout
> return tryCommand('javac -version', msg, true).then(function (output) {
>   // Let's check for at least Java 8, and keep it future proof so we can 
> support Java 10
>   var match = /javac 
> ((?:1\.)(?:[8-9]\.)(?:\d+))|((?:1\.)(?:[1-9]\d+\.)(?:\d+))/i.exec(output);
>   return match && match[1];
> });{code}
> 1. _platforms/android/cordova/lib/check_reqs.js:218_
> The comment states that javac prints to stderr, this is not true on my system 
> it prints to stdout!
> 2. _platforms/android/cordova/lib/check_reqs.js:220_
> The regex only looks after version numbers like 1.8 or 1.9 or 10, but the 
> version number my java version prints is _9.0.4_



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to