我正在使用Maven构建GWT应用程序。我的应用程序使用一些自定义UI表单而不是标准表单。我有自定义UI表单的文件,打包在.jar
文件中。
我的.ui.xml
文件包含:
<ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder'
xmlns:g='urn:import:com.google.gwt.user.client.ui'
xmlns:nc='custompackage.gwt.fields.client.widgets.reference'
>
...
<nc:UIReferenceField width="100%" text = "123" nc:field="rf"/>
...
我的模块.gwt.xml
文件继承了自定义类:
...
<inherits name="custompackage.gwt.fields.Fields"/>
...
当我构建Maven模块时,我得到:
Failed to execute goal org.codehaus.mojo:gwt-maven-plugin:2.6.0:compile (default) on project geographical-view-for-osp-gwt-2: GWT Module com.netcracker.platform.ui.toolkit.gwt.i18n.i18n not found in project sources or resources.
我已经研究过类似的问题,但他们的解决方案根本没有帮助我。你能救我吗?
P.S。:我的模块在没有自定义字段的情况下构建良好。
答案 0 :(得分:0)
我没有为我的.pom文件添加一些依赖项。我继承的模块依赖于它们并且它没有编译。