Eirik Sletteberg
Eirik Sletteberg
A few people have asked for this feature, but perhaps not many enough. What people usually do is `npm run your-script` from Maven, and then in package.json add `"your-script": "node...
Check your build logs above.. it should show the error output from Grunt?
Maybe it was a random failure?
In your build log, it says: ``` [INFO] No proxies configured [INFO] No proxy was configured, downloading directly ``` That means it cannot find any settings.xml file in your .m2...
On thing that might be confusing is that it's referring to a HTTP proxy here, while you're probably thinking of a Maven proxy, which is somethine else entirely. If you...
Try using the `npm` goal instead of gulp? Then, in package.json, add a script "build", so from Maven you run "npm run build" which then runs gulp?
It's possible, but I'd rather not add more configuration options to the plugin, because it's already so complex, and it's a very rarely asked-for feature. How do you use Alpine,...
Does it work when running locally?
Try setting `` and `` for every execution maybe?
Is there any chance that the `target` directory is wiped out between executions, somehow? Or the node binary ends up in the wrong directory somehow? Try logging into the CI...