From 538256bfb85610ab1239a3f1593ce2eb1c358cb4 Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Thu, 1 Jun 2023 12:19:55 +0200 Subject: [PATCH] tools_gradle_intellij_plugin_faq.md: Fixed example paths in "How to add a dependency on a plugin available in the file system" JetBrains/gradle-intellij-plugin#1394 --- .../tools_gradle_intellij_plugin_faq.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/topics/appendix/tools/gradle_intellij_plugin/tools_gradle_intellij_plugin_faq.md b/topics/appendix/tools/gradle_intellij_plugin/tools_gradle_intellij_plugin_faq.md index 36e10ba58..4109f3ac4 100644 --- a/topics/appendix/tools/gradle_intellij_plugin/tools_gradle_intellij_plugin_faq.md +++ b/topics/appendix/tools/gradle_intellij_plugin/tools_gradle_intellij_plugin_faq.md @@ -262,14 +262,14 @@ To fix that issue, upgrade the Java version to the latest patch available of the It is possible to add a dependency on a plugin available in the file system — like a plugin update downloaded manually from JetBrains Marketplace or built separately in another project. -To configure the dependency, add the `File` instance to the [`intellij.plugins`](tools_gradle_intellij_plugin.md#intellij-extension-plugins) property and point it to the `lib` directory inside the extracted plugin's directory or any other parent that contains plugin's .jar files. +To configure the dependency, add the `File` instance to the [`intellij.plugins`](tools_gradle_intellij_plugin.md#intellij-extension-plugins) property and point it to the extracted plugin's directory which contains the lib directory. ```kotlin intellij { - plugins.set(listOf(file("/path/to/plugin/lib/"))) + plugins.set(listOf(file("/path/to/plugin/"))) } ``` @@ -278,14 +278,14 @@ intellij { ```groovy intellij { - plugins = [file("/path/to/plugin/lib/")] + plugins = [file("/path/to/plugin/")] } ``` -It is also possible to refer to the sandbox directory of another Gradle project — to do that, point to the /projects/plugin-name/build/idea-sandbox/plugins/plugin-name/lib/ directory. +It is also possible to refer to the sandbox directory of another Gradle project — to do that, point to the /projects/plugin-name/build/idea-sandbox/plugins/plugin-name/ directory. ### Kotlin compiler throws `Out of memory. Java heap space` error