@@ -16,7 +16,7 @@ This documentation provides information for developers to set up their environme
1616
1717### Quick check
1818
19- To check that your development environment is properly set up to build the project, from the project root run on macOS or Linux:
19+ To check that your development environment is properly set up to build the project, run the following command from the project root on macOS or Linux:
2020``` shell
2121./setup.sh
2222```
@@ -54,40 +54,40 @@ If there is any issue with your output, check the requirements below and use the
5454
5555Requirements to build the full project:
5656
57- * A recent version ( 21+) of JDK ,
58- * The ` git ` command line must be installed,
59- * A container runtime environment must be available to run all tests (e.g. Docker Desktop).
57+ * JDK version is 21+,
58+ * The ` git ` command line is installed,
59+ * A container runtime environment is available to run all tests (e.g. Docker Desktop).
6060
6161### Install JDK
6262
6363Java is required to run Gradle, the project build tool.
64- Gradle will find any locally installed JDK and can download any missing JDK versions needed for the project build and testing.
64+ Gradle will find any locally installed JDK and download any missing JDK versions needed for the project build and testing.
6565
6666#### macOS
6767
68- Install a recent (21+) JDK using ` brew ` :
68+ Install JDK 21 using ` brew ` :
6969``` shell
7070brew install --cask zulu@21
7171```
7272
7373#### Linux
7474
75- Use your distribution package manager to install a recent (21+) JDK :
75+ Use your distribution package manager to install JDK 21 :
7676``` shell
7777apt install openjdk-21-jdk
7878```
79- Alternatively, manually download and install it from [ Eclipse Temurin releases] ( https://adoptium.net/temurin/releases/ ) .
79+ Alternatively, manually download and install from [ Eclipse Temurin releases] ( https://adoptium.net/temurin/releases/ ) .
8080
8181Add the ` JAVA_HOME ` environment variable to your shell using the ` export ` command.
8282You can permanently set it by appending the ` export ` command to your shell configuration file such as ` ~/.zshrc ` , ` ~/.bashrc ` or similar.
8383``` shell
8484export JAVA_HOME=/< path to extracted archive> /jdk-21.x.x
8585```
86- Restart your shell after applying the changes if you appended the commands to your shell configuration file.
86+ If you appended the commands to your shell configuration file, restart your shell after applying the changes .
8787
8888#### Windows
8989
90- Install a recent (21+) JDK using the Windows package manager ` winget ` :
90+ Install JDK 21 using the Windows package manager ` winget ` :
9191``` pwsh
9292winget install --id EclipseAdoptium.Temurin.21.JDK
9393```
@@ -114,7 +114,7 @@ apt install git
114114
115115#### Windows
116116
117- Download and install the installer from [ the official website] ( https://git-scm.com/download/win ) or install it using the Windows package manager ` winget ` :
117+ Download and install the installer from [ the official website] ( https://git-scm.com/download/win ) , or install it using the Windows package manager ` winget ` :
118118
119119``` pwsh
120120winget install --id git.git
@@ -167,7 +167,7 @@ winget install --id Docker.DockerDesktop
167167
168168> [!NOTE]
169169> The git hooks will check that your code is properly formatted before committing.
170- > This is done both to avoid future merge conflicts and ensure uniformity inside the code base.
170+ > This is done both to avoid future merge conflicts and ensure uniformity across the code base.
171171
172172* Configure git to automatically update submodules.
173173 ```shell
@@ -188,11 +188,11 @@ winget install --id Docker.DockerDesktop
188188# ## Configure Akka Token
189189> [! NOTE]
190190> You can skip this step if you don’t need instrumentation for the ** akka-http-10.6** module.
191- > For background on why Akka now requires authentication, see this [ article](https://akka.io/blog/why-we-are-changing-the-license-for-akka).
191+ > For background on why Akka now requires authentication, see [ this article](https://akka.io/blog/why-we-are-changing-the-license-for-akka).
192192
193193To enable access to Akka artifacts hosted on Lightbend’s private repository, you’ll need to configure an authentication token.
194- 1. Obtain a repository token. Visit the Akka account [page](https://account.akka.io/token) to generate a secure repository token.
195- 2. Set up the environment variable. Create an environment variable named:
194+ 1. Obtain a repository token by visiting the Akka account [page](https://account.akka.io/token) to generate a secure repository token.
195+ 2. Create an environment variable named:
196196` ` ` shell
197197 ORG_GRADLE_PROJECT_akkaRepositoryToken=< your_token>
198198` ` `
0 commit comments