构建maven会引发maven-plugin:0.0.16错误,缺少必需的类

时间:2015-07-22 13:39:13

标签: maven maven-3

当我构建项目时,出现了一个奇怪的错误:

A required class was missing while executing com.github.eirslett:frontend-maven-plugin:0.0.16:install-node-and-npm: org/slf4j/helpers/MarkerIgnoringBase

我不知道但是它与maven新版本有关吗? 昨晚我更新到maven 3.3.3。

1 个答案:

答案 0 :(得分:0)

这是SLF4J问题.. 我将frontend-maven-plugin版本更改为0.0.23,现在一切都很好。

<plugin>
      <groupId>com.github.eirslett</groupId>
      <artifactId>frontend-maven-plugin</artifactId>
      <version>0.0.23</version>
</plugin>