我以这种方式使用front-end-maven-plugin
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>install node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<phase>generate-resources</phase>
</execution>
<configuration>
<nodeVersion>8.11.3</nodeVersion>
<npmVersion>6.3.0</npmVersion>
</configuration>
</executions>
</plugin>
我有这个错误
[ERROR] Malformed POM /Users/admin/Application-Marwen/workspace/Tourism/Tourism-Web/pom.xml: Unrecognised tag: 'configuration'
能帮我吗?谢谢