From 6d8919c1214fdb4a06f45b0d6867fe6174baae84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Mon, 23 Sep 2024 14:31:31 +0200 Subject: [PATCH] creating_plugin_project.md: highlight Java/Kotlin sources --- topics/tutorials/build_system/creating_plugin_project.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/topics/tutorials/build_system/creating_plugin_project.md b/topics/tutorials/build_system/creating_plugin_project.md index 5910f3211..a4e2fb9a0 100644 --- a/topics/tutorials/build_system/creating_plugin_project.md +++ b/topics/tutorials/build_system/creating_plugin_project.md @@ -36,10 +36,10 @@ Launch the New Project wizard via the File | New | P See also [Kotlin for Plugin Developers](using_kotlin.md) for more information. > Projects generated with IntelliJ IDEA 2023.1 or newer support both Kotlin and Java sources out of the box. - > Project generator automatically creates \$PLUGIN_DIR\$/src/main/kotlin sources directory. - > To add Java sources, create \$PLUGIN_DIR\$/src/main/java directory. + > The Project generator automatically creates \$PLUGIN_DIR\$/src/main/kotlin sources directory. + > To add Java sources, create the \$PLUGIN_DIR\$/src/main/java directory manually. > - {style="note"} + {style="note" title="Using Kotlin and Java sources"} 5. Provide the Group which is typically an inverted company domain (e.g. `com.example.mycompany`). It is used for the Gradle property `project.group` value in the project's Gradle build script.