Reputation: 193
I have started using Vaadin 23 which is launched recently. But when I'm trying to compile theme its not working. Below is the message I'm getting on console.
BUILD FAILURE [ERROR] Could not find goal 'update-theme' in plugin com.vaadin:vaadin-maven-plugin:23.1.1 among available goals build-frontend, clean-frontend, dance, prepare-frontend
Upvotes: 0
Views: 227
Reputation: 4275
Vaadin 23 uses plain CSS instead of SCSS, so it doesn't need to be compiled. Thus there is no need for an "update-theme" goal.
Upvotes: 0
Reputation: 2271
Many things have changed since Vaadin 8. There is no more update-theme
. You should create a new template project and use that as a reference.
Upvotes: 1