compiler plugin excludes that don't exclude

2012-08-28 Thread Benson Margulies
Using the current compiler plugin, I've got a case where I specify an exclude, and the -X log does not show a particular file, but javac tries to compile it anyway. Anybody have any ideas? - To unsubscribe, e-mail:

Re: compiler plugin excludes that don't exclude

2012-08-28 Thread Russell Gold
Hi Benson, Javac compiles not only the files you specify, but also any classes that they reference. The only way to keep the dependencies from compiling is to remove them from the directory (and get a compile error) or modify the source code so that they are no longer referenced. On Aug 28,

Re: compiler plugin excludes that don't exclude

2012-08-28 Thread Benson Margulies
On Tue, Aug 28, 2012 at 6:48 PM, Russell Gold russell.g...@oracle.com wrote: Hi Benson, Javac compiles not only the files you specify, but also any classes that they reference. The only way to keep the dependencies from compiling is to remove them from the directory (and get a compile