I'm trying to create a Maven project in NetBeans, and have NetBeans recognize it as a Scala project and use the Scala plugins, but can't figure this out.
I can combine Scala and Maven without NetBeans. This is just a matter of getting the pom right, and that works great when run with mvn. No problem.
I can combine NetBeans and Maven without Scala. Here, NetBeans is happy to open a Scala project that uses Maven, but it just sees it as a generic Maven project and won't actually load all the Scala plugins, so I get no features beyond syntax highlighting.
I can combine NetBeans and Scala without Maven. For example, when creating a new Scala project, the project properly loads with the Scala plugins enabled, and I get all the goodies, but it's using Ant and I can't figure out how to get it to recognize Maven after defining a pom.
Somehow, I want to create/open a Scala Maven project in NetBeans and have it recognize it as a Scala project and use the Scala plugins for NetBeans. Is this a doable thing?