当我构建我的项目时,出现了一个奇怪的错误:
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。
发布于 2015-07-22 13:51:46
这是SLF4J的问题。我将前端-maven-plugin版本改为0.0.23,现在一切都很好。
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>0.0.23</version>
</plugin>https://stackoverflow.com/questions/31564835
复制相似问题