How to get NetBeans to load a Gradle project instead of Maven pom?

We have a project with build.gradle script and old maven pom.xml. Netbeans (8.0) will attempt to load the project as a maven project due to the existence of pom.xml. Is there a way to get it to load the project as a gradle project using build.gradle? Thank you

+4
source share
1 answer

No, this is not possible with NetBeans. The easiest way is to remove / rename pom.xml. In this case, Maven support will ignore this folder and it will be recognized.

I filled out the RFE for this - https://netbeans.org/bugzilla/show_bug.cgi?id=243778

+3
source

Source: https://habr.com/ru/post/1536177/


All Articles