我想使用我pom.xml
中声明的com.google.gwt.eventbinder
,如下所示:
<dependency>
<groupId>com.google.gwt.eventbinder</groupId>
<artifactId>eventbinder</artifactId>
<version>1.1.0</version>
</dependency>
在我的module.gwt.xml
我有:
<inherits name='com.google.web.bindery.event.EventBinder'/>
但出于某种原因我得到了
[INFO] GET /recompile-requester/app
[INFO] Loading inherited module 'com.blubb.client.web.App'
[INFO] Loading inherited module 'com.google.web.bindery.event.EventBinder'
[INFO] [ERROR] Unable to find 'com/google/web/bindery/event/EventBinder.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?
[INFO] Sent error page: Failed to generate the Js recompile requester.
为了使用eventbinder,我还有什么需要指定的吗?