Home > OS >  How to add a custom gradle plugin to Intellij Idea?
How to add a custom gradle plugin to Intellij Idea?

Time:10-07

I created a simple gradle plugin according to enter image description here

I have also tried to add the following code, but it does not make any diffirence:

idea {
    project {
        jdkName = '1.8'
        languageLevel = '1.8'
    }
    apply plugin: MyBuild
}

What should I do to make it appear there?

CodePudding user response:

What exactly do you expect to see there? For example, I see the custom task, that the plugin adds here, in Gradle tool window:

enter image description here

  • Related