我有两个项目,一个是gwt项目,一个是非gwt项目。我可以在非gwt项目中使用gwt jar文件,它工作正常。但是,我想直接引用gwt项目,所以我可以调试非gwt项目里面的gwt项目java文件。所以我做了以下步骤,但仍然收到错误:
然而,当我构建gwt模块时,我得到了以下错误。
R] Hint: Check the inheritance chain from your module; it may not be inheriting a required module or a module may not be adding its source path entries properly
我注意到有一条如下所示的源路径。它们应该在gwt项目中,我的问题是如何从非gwt项目的xml文件中引用源路径?
<source path="web/client"/>
<source path="util/common"/>
非gwt项目结构:
com.abc.reports -- nonGwtProject.gwt.xml is under this folder
gwt项目结构:
com.abc.toolkit -- gwtProject.gwt.xml is under this folder
com.abc.toolkit.web.client
com.abc.toolkit.util.common
我应该为源路径指定哪条路径?