Query about the grade plugin
Answered
How can I generate the .idea folder and different files underneath it by running a gradle command on the command line ? Which plugins should I use and what task should I execute ? What task does the Intellij gradle plugin execute while importing a grade project
Please sign in to leave a comment.
The answer was provided in the support request:
IDE uses built-in integration, it does not use any Gradle-specific plugins for generating project configuration when importing Gradle projects https://www.jetbrains.com/help/idea/gradle.html#import_gradle_module
There is a
ideaGradle plugin: https://docs.gradle.org/current/userguide/idea_plugin.html developed by Gradle to generate Gradle project configuraiton files but we do not recommend to use it without a real need as it may produce not always correct/compatible with current IDE module configuration files.Check also https://github.com/JetBrains/gradle-idea-ext-plugin plugin (developed by JetBrains) which helps to configure some IDE-specific options via build.gradle scripts.