Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Missing dependency. Vaadin, Maven
Hi!
I'm trying to generate a new Vaadin project with Maven.
Using the following script
mvn archetype:generate \
-DarchetypeGroupId=com.vaadin \
-DarchetypeArtifactId=vaadin-archetype-application \
-DarchetypeVersion=7.5.2 \ -DgroupId=com.example \
-DartifactId=MvnVaadinProject \
-Dversion=1.0 \
-Dpackaging=war
I get the following error:
[INFO] Internal error in the plugin manager executing goal 'com.vaadin:vaadin-maven-plugin:7.5.2:compile': Unable to load the mojo 'com.vaadin:vaadin-maven-plugin:7.5.2:compile' in the plugin 'com.vaadin:vaadin-maven-plugin'. A required class is missing: org/codehaus/plexus/compiler/util/scan/InclusionScanException org.codehaus.plexus.compiler.util.scan.InclusionScanException
Browsing into .m2 I didn't find the folder org/codehaus/plexus/compiler.
Is it supposed that Maven install this dependency in any other place?
Does anybody knows how to solve this problem?