Usually we want to use our model classes inside of the GWT project. But it is impossible without additional configuration of a model package.
The first step is to add file model.gwt.xml to the model package for conversion of the regular java package to the GWT module.
model.gwt.xml :
<module> <inherits name='com.google.gwt.user.User' /> <source path="model"></source> </module>