A future-proof port of the com.google.gwt.event.EventDOM
GWT module, with no dependency on gwt-user
(besides the Java Runtime Emulation), to prepare for GWT 3 / J2Cl.
<dependency>
<groupId>org.gwtproject.event</groupId>
<artifactId>gwt-event-dom</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
For Gradle:
```gradle
implementation("org.gwtproject.event:gwt-event-dom:HEAD-SNAPSHOT")
-
Update your GWT module to use
<inherits name="org.gwtproject.event.EventDOM" />
-
Change the
import
s in your Java source files:import org.gwtproject.event.dom.client.BlurEvent;
To build gwt-event-dom:
- run
mvn clean verify
on the parent directory. This will build the artifact and run tests against the JVM, J2CL, and GWT2.
GWT Event DOM requires GWT 2.9.0 or newer!
GWT Event DOM depends on the following modules:
- gwt-dom
- gwt-event
- gwt-event-legacy