Skip to content

Commit

Permalink
(chore) README update
Browse files Browse the repository at this point in the history
  • Loading branch information
anusikh committed Jul 19, 2024
1 parent e9306eb commit e3a5776
Showing 1 changed file with 32 additions and 102 deletions.
134 changes: 32 additions & 102 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,113 +1,43 @@
# Java Version Manager (JVeM)
# JVeM

![JVeM](/public/final-logo-black.png)
![](/public/final-logo-black.png)

Java Version Manager (JVeM) is a cross-platform tool designed to simplify the management of multiple Java versions on your system. Whether you're a developer working on diverse projects or an enthusiast exploring different Java applications, JVeM makes it easy to switch between and manage various Java versions seamlessly.
a simple version manager for java, node and maven
- *cross-platform support:* consistent experience across different operating systems.
- *simple version switching:* easily switch between different java/node versions.

## Table of Contents
#### getting started:

1. [Features](#features)
2. [Supported Platforms](#supported-platforms)
3. [Getting Started](#getting-started)
- [Windows Installation](#windows-installation)
- [macOS Installation](#macos-installation)
- [Linux Installation](#linux-installation)
4. [Usage](#usage)
- [Commands and Descriptions](#commands-and-descriptions)
5. [Future Scope](#future-scope)
to get started with jvem, refer to the installation instructions and basic usage guidelines below.

## Features:
#### windows installation

- **Cross-Platform Support:** JVeM is compatible with macOS, Linux, and Windows, providing a consistent experience across different operating systems.
- **Simple Version Switching:** Easily switch between different Java versions with a single command, streamlining your development workflow.
- **Effortless Installation:** JVeM offers a straightforward installation process on supported platforms, ensuring quick setup without unnecessary complications.
- **Customizable Configuration:** Tailor JVeM to your specific needs by configuring environment variables and settings to suit your Java development environment.
- download the latest version from [releases](https://github.com/anusikh/jvem/releases)
- add these path to your environment variables:
```
C:\Users\<user>\.jvem\java\bin
C:\Users\<user>\.jvem\node
C:\Users\<user>\.jvem\maven
<path-to-extracted-binary>
```
#### macos/linux installation

## Supported Platforms:
- download the latest version from [releases](https://github.com/anusikh/jvem/releases)
- add the following lines to `~/.zshrc` or `~/.bashrc`
```
PATH="$M2_HOME/bin:$PATH"
PATH=$PATH:$HOME/.jvem/java/bin
PATH=$PATH:$HOME/.jvem/node/bin
JAVA_HOME=$HOME/.jvem/java
JDK_HOME=$HOME/.jvem/java
alias jvem=<path-to-extracted-binary>
```

- Windows
- Linux
- macOS
#### usage:

## Getting Started:
- just run the `jvem --help` command

To get started with JVeM, refer to the installation instructions and basic usage guidelines below.
#### note for macos:

#### Windows Installation

- Download the latest `jvem.zip` file from [Releases](https://github.com/anusikh/jvem/releases)
- Extract this file here.
- Add this path to your environment variables: `C:\Users\<user>\.jvem\java\bin`
- Add the path of the extracted folder to environment variables.

#### macOS Installation

- Download the latest `jvem_macos.tar.gz` file from [Releases](https://github.com/anusikh/jvem/releases)
- Extract the tarball file.
- Add this line to your zshrc/bashrc file: `export JAVA_HOME=$HOME/.jvem/java` and source it.
- Add an alias to use jvem easily. `alias jvem=~/Downloads/jvem`

#### Linux Installation

- Download the latest `jvem_linux.tar.gz` file from [Releases](https://github.com/anusikh/jvem/releases)
- Extract the tarball file.
- Add this line to your zshrc/bashrc file: `PATH=$PATH:$HOME/.jvem/java/bin`
- Also add this line `JAVA_HOME=$HOME/.jvem/java` and then source the rc file
- Add an alias to use jvem easily. `alias jvem=~/Downloads/jvem`

## Usage:

Once installed, use the following commands to manage your Java versions.
1. Check all versions of java supported by JVeM:
```
jvem lsrem
```
2. Install a new version on your system:
```
jvem install zulu17
```
3. Start using the java version installed
```
jvem usev zulu17
```
4. Check if java got installed:

If java versions < 8:
`java -version `
else:
`java --version`
5. Uninstall java
`jvem uninstall zulu17`


## Commands and Descriptions

| Command | Description |
| ------------------------------ | ---------------------------------------------- |
| `jvem lsrem` | List all JDK versions available for install. |
| `jvem ls` | List locally installed JDK versions. |
| `jvem install zulu21` | Install Zulu JDK version 21. |
| `jvem usev zulu17` | Use a specific JDK version after installation. |
| `jvem current` | Find the currently active JDK version. |
| `jvem deactivate` | Deactivate the currently active JDK. |
| `jvem uninstall zulu17` | Uninstall the specified JDK version. |
| `jvem help` | Display help information. |
| `jvem clean` | Clean empty folders in the .jvem directory. |
| `jvem --V` or `jvem --version` | Display the version of JVeM. |

## Future Scope:

JVeM is an evolving project, and future updates may include:

- Addition of more JDKs
- Addition of support for new platforms.
- Integration of test cases to enhance stability.
- Bug fixes and improvements based on user feedback.

Explore the full capabilities of JVeM to enhance your Java development experience!



### Note for MacOs:
This might show an error when trying to use it for the first time, you would need to allow it from settings > under privacy and security:
<img width="710" alt="Screenshot 2024-03-09 at 2 14 49 AM" src="https://github.com/anusikh/jvem/assets/64547846/0f37ea90-1b68-4272-a823-f8dd2390c324">
you would need to allow it from settings > under privacy and security:
<img alt="" src="https://github.com/anusikh/jvem/assets/64547846/0f37ea90-1b68-4272-a823-f8dd2390c324">

0 comments on commit e3a5776

Please sign in to comment.