gpt4 book ai didi

java - 前端 Maven 插件无法执行目标

转载 作者:行者123 更新时间:2023-11-30 06:53:31 25 4
gpt4 key购买 nike

在我们的项目中,我们使用前端 maven 插件这是我的 pom.xml:

        <plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.0</version>
<configuration>
<workingDirectory>src/main/webapp/ui</workingDirectory>
<installDirectory>src/main/webapp/ui/node_modules</installDirectory>
</configuration>
<executions>
<execution>
<!--Needed To run Grunt Tasks-->
<id>install node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<configuration>
<nodeVersion>v5.3.0</nodeVersion>
<npmVersion>3.3.12</npmVersion>
</configuration>
</execution>
<execution>
<id>grunt build</id>
<goals>
<goal>grunt</goal>
</goals>
</execution>

</executions>
</plugin>

当我全新安装项目时出现此错误:

led to execute goal com.github.eirslett:frontend-maven-plugin:1.0:install-node-and-npm (install node and npm) on project web: The plugin com.github.eirslett:frontend-maven-plugin:1.0 requires Maven version 3.1.0 -> [Help 1]

我的 Maven 版本是 3.3.3,我也用 3.1.0 版本试过它,它得到了同样的错误,所以我在我的 settings.xml 中使用了代理,但它得到了同样的错误。

最佳答案

我解决了,我的 IDE 捆绑了 maven,所以我只告诉它使用我的!

enter image description here

关于java - 前端 Maven 插件无法执行目标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37495738/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com