Skip to content

Commit 5fcbf85

Browse files
committed
Update frontpage and add detailed installation instructions.
Signed-off-by: Rahul Krishna <i.m.ralk@gmail.com>
1 parent 33f3275 commit 5fcbf85

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

docs/installing.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,24 @@ Finally, to enable building Java projects automatically, you will need to instal
109109
sdk install maven
110110
```
111111
112-
- Make sure `mvn` command is available in the `PATH`. Add the following to your `~/.zshrc`, `~/.bashrc` or `~/.bash_profile`:
112+
- Make sure `mvn` command is available in the `PATH`. If `mvn` is not in your path, add the following to your `~/.zshrc`, `~/.bashrc` or `~/.bash_profile` file:
113113
114114
```bash
115115
export PATH="$HOME/.sdkman/candidates/maven/current/bin:$PATH"
116116
```
117+
Then, source the file to apply the changes:
118+
119+
```bash
120+
source ~/.zshrc # or ~/.bashrc or ~/.bash_profile
121+
```
122+
123+
- Verify the installation:
124+
125+
```bash
126+
mvn -version
127+
```
128+
This should output the version of the installed Maven.
129+
117130
118131
### Python Analysis
119132

0 commit comments

Comments
 (0)