I have several GWT-based projects that won't compile unless the "-XdisableUpdateCheck"
flag is passed to the GWT compiler. I've been trying to mavenize these projects by using the "gwt-maven-plugin"
; however, I can't seem to figure out a way to configure the GWT Maven plugin
to use the "-XdisableUpdateCheck"
flag during GWT compile.
Is there a way to tell the GWT Maven plugin
to use such a flag during GWT compile?
Side Note: I am using GWT 2.4 SDK
and can't really upgrade to any other version.