我试图用Maven生成一个新的Vaadin项目。
使用以下脚本生成项目。
mvn archetype:generate \
-DarchetypeGroupId=com.vaadin \
-DarchetypeArtifactId=vaadin-archetype-application \
-DarchetypeVersion=7.5.2 \
-DgroupId=com.example \
-DartifactId=MvnVaadinProject \
-Dversion=1.0 \
-Dpackaging=war
当我输入mvn install
时,我收到以下错误:
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[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
浏览.m2我找不到文件夹org/codehaus/plexus/compiler
。
Maven是否应该在任何其他地方安装此依赖项?
有人知道如何解决这个问题吗?