-
Notifications
You must be signed in to change notification settings - Fork 2
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
Support local-first version expressions #6
Comments
Could optionally also pick up locally installed JDKs (e.g., system-installed, outside of cjdk), where known (or somehow configured), at least when the vendor is left unspecified. |
Without |
I just added some logic like this to my dotfiles (1). In a nutshell, you can parse the output of |
Versions suffixed with
~
should alter the matching rules, such that the closest matching version among the already installed JDKs is selected.17~
should find the newest installed 17.x, failing if no 17.x is installed17+~
should find the newest installed, failing if the newest installed is less than 17This can minimize downloads when used for tasks where having the latest JDK is not critical.
The text was updated successfully, but these errors were encountered: