Skip to content
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

docs: Updated README.md #5743

Merged
merged 2 commits into from
Feb 24, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Build

In order to be able to build Eclipse Kura™ on your development machine, you need to have the following programs installed in your system:
* JDK 17
* Maven 3.5.x
* Maven 3.9.x

<details>
<summary>
Expand Down Expand Up @@ -97,12 +97,12 @@ Reload the terminal and run `java -version` to make sure it is installed correct
Using [Brew](https://brew.sh/) you can easily install Maven from the command line:

```bash
brew install maven@3.5
brew install maven@3.9
```
Run `mvn -version` to ensure that Maven has been added to the PATH. If Maven cannot be found, try running `brew link maven@3.5 --force` or manually add it to your path with:
Run `mvn -version` to ensure that Maven has been added to the PATH. If Maven cannot be found, try running `brew link maven@3.9 --force` or manually add it to your path with:

```bash
export PATH="/usr/local/opt/maven@3.5/bin:$PATH"
export PATH="/usr/local/opt/maven@3.9/bin:$PATH"
```

</details>
Expand All @@ -120,7 +120,7 @@ sudo apt install openjdk-17-jdk
```
For Maven

You can follow the tutorial from the official [Maven](http://maven.apache.org/install.html) site. Remember that you need to install the 3.5.x version.
You can follow the tutorial from the official [Maven](http://maven.apache.org/install.html) site. Remember that you need to install the 3.9.x version.

</details>

Expand Down