我整天都在努力运行GWTP
,Maven
基本上我GWTP
使用 Eclipse 插件创建了一个 gwt 应用程序。并添加了一个简单的欢迎演示者。在没有 maven 的情况下尝试过,它在 eclipse 中运行良好。
但是,当我将它转换为 maven 项目(我正在使用 m2eclipse 插件)时,一切都会中断。所以我添加了所需的依赖项和 gwtp 依赖项:
<dependency>
<groupId>com.google.gwt.inject</groupId>
<artifactId>gin</artifactId>
<version>1.5.0</version>
</dependency>
<!-- MVP component -->
<dependency>
<groupId>com.gwtplatform</groupId>
<artifactId>gwtp-all</artifactId>
<version>${gwtp.version}</version>
</dependency>
但是,当我尝试运行它时,出现此错误:
Caused by: java.lang.RuntimeException: Deferred binding failed for 'com.google.gwt.event.shared.EventBus' (did you forget to inherit a required module?)
任何想法为什么很难用 maven 制作 GWTP。