My GWT module depends on my SDK module. I want to block commits of java language features unsupported in GWT.
For example, GWT doesn't support Arrays.copyOf and when someone adds this to SDK, SDK builds fine but down the line GWT fails.
How can I fail on these early so I don't run through a long build before discovering the incompatibility?
Thanks