We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Originally by lrozenblyum
AppWidgetset generated by maven plug-in causes eclipse generating warning about serialization (after Eclipse : Maven -> Update project...) :
-The serializable class AppWidgetset does not declare a static final serialVersionUID field of type long* in target/generated-sources/wscdn
(surprisingly eclipse validates target directory as well).
Ideas to fix:
Make com.vaadin.server.WidgetsetInfo interface not Serializable (not sure if it's really needed to be Serializable)
Make vaadin-maven-plugin generate new serialVersionUID inside UpdateWidgetsetMojo.java)
If you approve one of ways of fixing the problem, I can contribute a patch.
Imported from https://dev.vaadin.com/ issue #20241
The text was updated successfully, but these errors were encountered:
Another option: 3) Modify widgetsetinfo.tmpl inside maven-vaadin-plugin by adding
@SupressWarnings("serial")
Sorry, something went wrong.
No branches or pull requests
Originally by lrozenblyum
AppWidgetset generated by maven plug-in causes eclipse generating warning about serialization (after Eclipse : Maven -> Update project...) :
-The serializable class AppWidgetset does not declare a static final serialVersionUID field of type long* in target/generated-sources/wscdn
(surprisingly eclipse validates target directory as well).
Ideas to fix:
Make com.vaadin.server.WidgetsetInfo interface not Serializable (not sure if it's really needed to be Serializable)
Make vaadin-maven-plugin generate new serialVersionUID inside UpdateWidgetsetMojo.java)
If you approve one of ways of fixing the problem, I can contribute a patch.
Imported from https://dev.vaadin.com/ issue #20241
The text was updated successfully, but these errors were encountered: