Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not get resource 'https://nodejs.org/dist/v14.19.3/ivy.xml'

I am getting this Gradle error today (it worked fine before). Thank you in advance for your help.

Execution failed for task ':nodeSetup'.

Could not resolve all dependencies for configuration 'detachedConfiguration16'. Could not resolve org.nodejs:node:14.19.3. Required by: project : > Could not resolve org.nodejs:node:14.19.3. > Could not get resource 'https://nodejs.org/dist/v14.19.3/ivy.xml'. > Could not GET 'https://nodejs.org/dist/v14.19.3/ivy.xml'. Received status code 403 from server: Forbidden

Gradle version: 3.1

build.gradle configuration:

dependencies {
    classpath "com.github.node-gradle:gradle-node-plugin:2.2.4"
}

apply plugin: "com.github.node-gradle.node"

node {
    version = '14.19.3'
    download = true
}

We were using moowork as the build plugin and got the same error.

We also tried the latest gradle-node-plugin (3.5.1), and we got kotlin error (java.lang.NoClassDefFoundError: kotlin/jvm/internal/Intrinsics).

like image 603
Jack Cui Avatar asked Apr 25 '26 03:04

Jack Cui


1 Answers

Try this configuration in your build.gradle:

node {
  version = '14.19.3'
  distBaseUrl = 'https://direct.nodejs.org/dist/'
  download = true
}

Source: https://github.com/nodejs/nodejs.org/issues/5149#issuecomment-1470896878

like image 165
wmax Avatar answered Apr 27 '26 20:04

wmax



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!