Re: GMavenPlus compiles stubs

2016-11-21 Thread Keegan Witt
Jochen is right, Groovy compilation happens after stubgen and javac, hence it'll replace those previously generated classes. Why shouldn't javac compile the stubs? Wouldn't javac need the classes so that it has something to compile against (since Java is statically compiled) so that circular

Re: GMavenPlus compiles stubs

2016-11-21 Thread Jochen Theodorou
On 21.11.2016 23:08, Winnebeck, Jason wrote: I recently encountered an error from javac compiling a stub that was otherwise valid from Groovy itself when I enabled generate-stubs task. I resolved the error properly, but I wonder, should javac be compiling stubs when using gmavenplus? afaik no

GMavenPlus compiles stubs

2016-11-21 Thread Winnebeck, Jason
I recently encountered an error from javac compiling a stub that was otherwise valid from Groovy itself when I enabled generate-stubs task. I resolved the error properly, but I wonder, should javac be compiling stubs when using gmavenplus? I thought it just referred to them but did not compile