Hi I'm testing the gradle plugin, and when importing the project into Netbeans 8.0.2 / 8.1 it doesn't recognizes Frege sources ("src/main/frege").
I've look into the SourceSet branch you are working on and I guess the problem is that there is no frege sourceSet defined. It seems you are adding the dir to all existent source sets declared by the JavaPlugin.
As a work around it turns out if you add the srcDir to the allSource sourceSet then the IDE knows that an extra source dir should be taken into account and then it is visible.
Inside the FregePlugin#configureSourceSetDefaults fmethod it's enough adding the last line:
Hi I'm testing the gradle plugin, and when importing the project into Netbeans 8.0.2 / 8.1 it doesn't recognizes Frege sources ("src/main/frege").
I've look into the SourceSet branch you are working on and I guess the problem is that there is no frege sourceSet defined. It seems you are adding the dir to all existent source sets declared by the JavaPlugin.
As a work around it turns out if you add the srcDir to the allSource sourceSet then the IDE knows that an extra source dir should be taken into account and then it is visible.
Inside the FregePlugin#configureSourceSetDefaults fmethod it's enough adding the last line:
Janus