Hello,
I am trying to create a AEM Maven archetype project. When I run the build it shows below error.\
I have also included my parent pom.xml related to this:-
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>${frontend-maven-plugin.version}</version>
<configuration>
<nodeVersion>v21.5.0</nodeVersion>
<npmVersion>10.2.4</npmVersion>
</configuration>
<executions>
<execution>
<id>install node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
</execution>
<execution>
<id>npm install</id>
<goals>
<goal>npm</goal>
</goals>
</execution>
</executions>
</plugin>
Have install node.js :- v21.5.0
npm -v :- 10.2.4
@pkadhatia @srinuDyadav @BrianKasingli
Thanks in advance