We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using frontend-maven-plugin to install node and npm happens error :
The parameters 'nodeVersion' for goal com.github.eirslett:frontend-maven-plugin:1.12.1:install-node-and-npm are missing or invalid
Maybe it is a bug of this plugins, to fix by changing plugins configuration from:
<plugins> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <version>${frontend-maven-plugin.version}</version> <executions> <execution> <id>install node and npm</id> <goals> <goal>install-node-and-npm</goal> </goals> <configuration> <nodeVersion>v14.19.0</nodeVersion> </configuration> </execution>
to nodeVersion in global configuration
<plugins> <plugin> <configuration> <nodeVersion>v14.19.0</nodeVersion> </configuration> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <version>${frontend-maven-plugin.version}</version> <executions> <execution> <id>install node and npm</id> <goals> <goal>install-node-and-npm</goal> </goals> </execution>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using frontend-maven-plugin to install node and npm happens error :
Maybe it is a bug of this plugins, to fix by changing plugins configuration from:
to nodeVersion in global configuration
The text was updated successfully, but these errors were encountered: