From d5f4696131ef3272ae76d2a2a0562849ca6c7e1a Mon Sep 17 00:00:00 2001 From: Clement Escoffier Date: Thu, 26 Oct 2023 16:26:15 +0200 Subject: [PATCH 1/2] Recommend GraalVM CE --- docs/src/main/asciidoc/building-native-image.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/building-native-image.adoc b/docs/src/main/asciidoc/building-native-image.adoc index fb26e300b8028..4353b5fbff90e 100644 --- a/docs/src/main/asciidoc/building-native-image.adoc +++ b/docs/src/main/asciidoc/building-native-image.adoc @@ -103,7 +103,8 @@ GraalVM {graalvm-version} is required. 1. Install GraalVM if you haven't already. You have a few options for this: ** Download the appropriate archive from or , and unpack it like you would any other JDK. -** Use platform-specific install tools like https://sdkman.io/jdks#Oracle[sdkman], https://github.com/graalvm/homebrew-tap[homebrew], or https://github.com/ScoopInstaller/Java[scoop]. +** Use platform-specific installer tools like https://sdkman.io/jdks#graalce[sdkman], https://github.com/graalvm/homebrew-tap[homebrew], or https://github.com/ScoopInstaller/Java[scoop]. +We recommend the _community edition_ of GraalVM. For example, install it with `sdk install java 21-graalce`. 2. Configure the runtime environment. Set `GRAALVM_HOME` environment variable to the GraalVM installation directory, for example: + [source,bash] From 3c525d8e2e8b8977c6b1321c1d5de87085140e88 Mon Sep 17 00:00:00 2001 From: Clement Escoffier Date: Mon, 30 Oct 2023 07:56:55 +0100 Subject: [PATCH 2/2] Fix missing section in the gRPC getting started guide --- docs/src/main/asciidoc/grpc-getting-started.adoc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/src/main/asciidoc/grpc-getting-started.adoc b/docs/src/main/asciidoc/grpc-getting-started.adoc index 7d4b834f150a5..32d8d0a91fb0d 100644 --- a/docs/src/main/asciidoc/grpc-getting-started.adoc +++ b/docs/src/main/asciidoc/grpc-getting-started.adoc @@ -99,10 +99,6 @@ If this retrieved version does not work in your context, you can either force to You can also download the suitable binary and specify the location via `-Dquarkus.grpc.protoc-path=/path/to/protoc`. - -Alternatively to using the `generate-code` goal of the `quarkus-maven-plugin`, you can use `protobuf-maven-plugin` to generate these files. -See the <> section for more information. - Let's start with a simple _Hello_ service. Create the `src/main/proto/helloworld.proto` file with the following content: