From bc8d67266903c062c41538c27c9228a53e22f604 Mon Sep 17 00:00:00 2001 From: Karol Lewandowski Date: Mon, 3 Jun 2024 17:15:28 +0200 Subject: [PATCH] creating_plugin_project.md: Update JDK to 17 Project wizard shows an error when JDK lower than 17 is selected --- topics/tutorials/build_system/creating_plugin_project.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topics/tutorials/build_system/creating_plugin_project.md b/topics/tutorials/build_system/creating_plugin_project.md index 5ac90ab05..9b63fa1e7 100644 --- a/topics/tutorials/build_system/creating_plugin_project.md +++ b/topics/tutorials/build_system/creating_plugin_project.md @@ -33,7 +33,7 @@ Launch the New Project wizard via the File | New | P 6. Provide the Artifact which is the default name of the build project artifact (without a version). It is also used for the Gradle property `rootProject.name` value in the project's settings.gradle.kts file. For this example, enter `my_plugin`. -7. Select JDK 11. +7. Select JDK 17. This JDK will be the default JRE used to run Gradle, and the JDK version used to compile the plugin sources.