Hello, I am migrating a Vaadin7 project to Vaadin8.
So far I have modified the pom files and ran the Vaadin migration tool.
Now when trying to build the project I receive an error: “cannot resolve symbol ‘PropertyId’”
This is due to the following import:
“Import com.vaadin.annotations.PropertyId”
The import is used for example in the following code:
@PropertyId(“firstName”)
private TextField firstNameField;
I tried searching for documentation regarding annotations but it has been removed from the Vaadin website.