Thufir
Thufir

Reputation: 8497

how to enable gradle for Netbeans?

I enabled groovy through options > miscellaneous but don't see a plugin for gradle. How do I enable gradle for Netbeans 11?

see also:

does netbeans 11 support grails?

Upvotes: 4

Views: 16219

Answers (1)

skomisa
skomisa

Reputation: 17383

Since you have already installed and activated Groovy, Gradle is enabled in NetBeans 11 simply by installing the Gradle plugin.

All NetBeans plugins are installed through the Tools > Plugins screen. To install the Gradle plugin:

  • On the Plugins screen click the Available Plugins tab.
  • Click the Name column header to sort the entries by name.
  • Locate the entry named Gradle, check it, then click the Install button:

    gradlePlugin

  • The Gradle plugin will be downloaded and installed. No restart will be required if that is the only plugin being installed.

To verify that the installation of the Gradle plugin was successful:

  • On the Plugins screen click the Installed tab.
  • Check the Show Details checkbox.
  • Scroll down and verify that there is an entry for Gradle:

    installedPlugins

Upvotes: 5

Related Questions