A little off topic, however, I just tried to use elemental2-dom, without any success.
I add the lib to my client module:
<dependency>
<groupId>com.google.elemental2</groupId>
<artifactId>elemental2-dom</artifactId>
<version>1.2.3</version>
</dependency>
And then try to use it:
DomGlobal.history.pushState(myUrl, "", myUrl);
And got the error:
[ERROR] Line 190: No source code is available for type elemental2.dom.DomGlobal; did you forget to inherit a required module?
So, I added:
<inherits name="elemental2.dom.DomGlobal"/>
to my gwt.xml, and got the error:
[ERROR] Unable to find 'elemental2/dom/DomGlobal.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?
Any idea what I'm doing wrong?
Thanks.