frontend-maven-plugin
frontend-maven-plugin copied to clipboard
Got error code 404 from the server arm64 gitlab runner.
I got a 404 error on the arm64 gitlab runner. Locally on Windows - fine.
[INFO] Installing node version v22.9.0
[INFO] Downloading https://nodejs.org/dist/v22.9.0/node-v22.9.0-linux-arm64-musl.tar.gz to /root/.m2/repository/com/github/eirslett/node/22.9.0/node-22.9.0-linux-arm64-musl.tar.gz
[INFO] No proxies configured
[INFO] No proxy was configured, downloading directly
Configuration:
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.15.1</version>
<executions>
<execution>
<id>install node and pnpm</id>
<goals>
<goal>install-node-and-pnpm</goal>
</goals>
<configuration>
<nodeVersion>v22.9.0</nodeVersion>
<pnpmVersion>9.11.0</pnpmVersion>
<nodeDownloadRoot>https://nodejs.org/dist/</nodeDownloadRoot>
</configuration>
</execution>
<execution>
<id>pnpm install</id>
<goals>
<goal>pnpm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<arguments>install</arguments>
</configuration>
</execution>
<execution>
<id>vite build</id>
<goals>
<goal>pnpm</goal>
</goals>
<configuration>
<arguments>vite build</arguments>
</configuration>
</execution>
</executions>
</plugin>
I found code with musl. How can I overwrite this?