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

Building maven raises maven-plugin:0.0.16 error, A required class was missing

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

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.

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

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