tldr/pages/common/jenv.md

29 lines
498 B
Markdown
Raw Normal View History

2020-10-07 21:06:04 +01:00
# jenv
> Command-line tool to manage the "JAVA_HOME" environment variable.
2020-10-07 21:06:04 +01:00
> More information: <https://www.jenv.be/>.
- Add a Java version to jEnv:
2020-10-07 21:06:04 +01:00
`jenv add {{path/to/jdk_home}}`
- Display the current JDK version used:
`jenv version`
- Display all managed JDKs:
`jenv versions`
- Set the global JDK version:
`jenv global {{java_version}}`
- Set the JDK version for the current shell session:
`jenv shell {{java_version}}`
- Enable a jEnv plugin:
`jenv enable-plugin {{plugin_name}}`