Bonjour, j'utilise le frontend-maven-plugin de la manière suivante

Code XML : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
		    <plugin>
		        <groupId>com.github.eirslett</groupId>
		        <artifactId>frontend-maven-plugin</artifactId>
		        <!-- Use the latest released version:
		        https://repo1.maven.org/maven2/com/github/eirslett/frontend-maven-plugin/ -->
		        <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>

et j'ai l'erreur suivante
[ERROR] Malformed POM /Users/admin/Application-Marwen/workspace/Tourism/Tourism-Web/pom.xml: Unrecognised tag: 'configuration'
Pourriez-vous m'aiser s'il vous plait ? Merci