We’re using Vaadin 23.4.1.
In the official documentation it states that the “prepare-frontend” goal has the includes goal-parameter. See here: Production Build | Deploying to Production | Vaadin Docs
However when i execute the goal the build fails with the following message:
Parameter 'includes' is unknown for plugin 'vaadin-maven-plugin:23.4.1:prepare-frontend (default-cli)'
Heres the snippet of our pom.xml where the plugin is configured:
<plugin>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-maven-plugin</artifactId>
<version>23.4.1</version>
<executions>
<execution>
<goals>
<goal>prepare-frontend</goal>
</goals>
</execution>
</executions>
<configuration>
<includes>**/*.svg</includes>
</configuration>
</plugin>
Is the documentation wrong or is our plugin-configuration faulty?