Could not find org.nodejs:x64

522 views Asked by At

When I try to build my Frontend app I get

Could not resolve all dependencies for configuration ':frontend:nodeDist'.
> Could not find org.nodejs:x64/node:6.17.1.
  Searched in the following locations:
      http://nodejs.org/dist/v6.17.1/ivy.xml
      http://nodejs.org/dist/v6.17.1/x64/node.exe

On another machine it downloads the node without issue from http://nodejs.org/dist/v6.17.1/win-x64/node.exe

Why does my machine not create the same download url with win-x64 instead of x64?

my build.gradle contains:

buildscript {
    dependencies {
        classpath 'com.moowork.gradle:gradle-node-plugin:0.10'
    }
}

apply plugin: 'com.moowork.node'

node {
    version = '6.17.1'
    npmVersion = '2.10.1'
    download = true
}

upgrading the versions is not an option in my case

0

There are 0 answers