How can I import Maven and Gradle bundled plugins in my IDE using gradle-intellij-plugin

I'm developing a new plugin using gradle-intellij-plugin.
Following the README.md, I've added the dependencies of Maven and Gradle bundled plugins as follows

intellij {
version = '2018.3.2'

plugins 'Maven', 'gradle'

}

 

In the plugin.xml I do see the imported plugins

But in the code I cannot import the classes provided with the bundled plugins

 

Should I add these sources ad project dependencies?



0
1 comment
Avatar
Permanently deleted user

So, it was probably messed up my .idea project folder. I recreated the project and now the dependencies are loaded with no need for extra import

0

Please sign in to leave a comment.