I used maven dependency to get GQuery lib:
<dependency>
<groupId>com.googlecode.gwtquery</groupId>
<artifactId>gwtquery</artifactId>
<version>1.4.2</version>
</dependency>
Added inheritance to project.gwt.xml
file, namely:
<inherits name='com.google.gwt.query.Query'/>
Super Dev Mode config in project.gwt.xml
looks like:
<add-linker name="xsiframe"/>
<set-configuration-property name='xsiframe.failIfScriptTag' value='FALSE'/>
And after running Codeserver I try to turn Dev Mode on and get the following message:
If I remove GQuery from project, Super Dev mode starts to work again.
Is it possible to launch GWT Super Dev mode with GQuery?