-
-
Notifications
You must be signed in to change notification settings - Fork 12.6k
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
jmeter formula doesn't support Java 9 #19939
Comments
Please file an issue upstream. |
Upstream issue: https://bz.apache.org/bugzilla/show_bug.cgi?id=61679 |
Thanks @romanlevin! |
@ilovezfs given that jmeter doesn't support Java 9 at the moment, and 9 is the default Cask version, maybe there should be a caveat mentioning that in this formula? |
@romanlevin no it needs a wrapper script and |
Oh okay. Not really clued in to this transition so wasn't aware it was a much larger issue. |
@romanlevin yeah it's a bit of a mess #19696 |
I've added this to the list in #20543. |
I removed/commented out the lines below in jmeter.bat to by pass this check since it is looking at the '0' in version 9. It works for me. if %current_minor% LSS %minimal_minor% ( |
@nemtech13
|
This is now fixed if you |
For run jmeter 3.3 with Java 10 I used this temporal solution. _java= |
brew install
ing one, specific Homebrew/homebrew-core formula (not cask or tap) and not every time you runbrew
? If it's a generalbrew
problem please file this issue at https://github.com/Homebrew/brew/issues/new. If it's abrew cask
problem please file this issue at https://github.com/caskroom/homebrew-cask/issues/new. If it's a tap (e.g. Homebrew/homebrew-php) problem please file this issue at the tap.brew update
and retried your prior step?brew doctor
, fixed all issues and retried your prior step?brew gist-logs <formula>
(where<formula>
is the name of the formula that failed) and included the output link? https://gist.github.com/d880b0aeb9d83be2f2a98540421a9434brew gist-logs
didn't work: ranbrew config
andbrew doctor
and included their output with your issue?After installing jmeter, it fails to start:
$ jmeter Error: Java version is too low to run JMeter. Needs at least Java >= 1.8.0
This because of this bit of shell script in
/usr/local/Cellar/jmeter/3.3/libexec/bin/jmeter
:which compares the
8
in1.8.0
to the0
in9.0.1
(thejava
cask), thus deciding Java 9 is too old.This is a known issue.
The text was updated successfully, but these errors were encountered: