Git Product home page Git Product logo

Comments (9)

deepy avatar deepy commented on August 20, 2024

How did the build fail?
I can't think of anything that should break

from gradle-node-plugin.

Kobe avatar Kobe commented on August 20, 2024

it fails with latest Gradle 6.x release for every node.js version since 12.x

* What went wrong:
Execution failed for task ':nodeSetup'.
> Could not resolve all files for configuration ':detachedConfiguration1'.
   > Could not find org.nodejs:node:12.15.0.
     Searched in the following locations:
       - https://nodejs.org/dist/v12.15.0/ivy.xml
     Required by:
         project :

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/6.1.1/userguide/command_line_interface.html#sec:command_line_warnings

but it works with latest 5.x release

from gradle-node-plugin.

allnightlong avatar allnightlong commented on August 20, 2024

Same problem here

from gradle-node-plugin.

Kobe avatar Kobe commented on August 20, 2024

I found a solution / workaround last night. It's using node-gradle plugin to download node/yarn/npm but on top of that gradle-node-plugin tasks.

import com.moowork.gradle.node.yarn.YarnTask

plugins {
    id("com.github.node-gradle.node") version "2.2.1"
}

repositories {
    jcenter()
}

node {
    // PLEASE use node LTS version or version with even major number
    version = "12.15.0"
    yarnVersion = "1.22.0"
    download = true
}

tasks {
    val build by registering(YarnTask::class) {
        dependsOn("yarn_install")
        args = listOf("build")
    }
}

from gradle-node-plugin.

deepy avatar deepy commented on August 20, 2024

The problem is (or at least should be) Gradle 6.x, not the node version, you can see #315 for more information about the issue.
There's multiple issues/PRs about the lack of Gradle 6 support.

The plugin you're using in the solution is the fork available at https://github.com/node-gradle/gradle-node-plugin which should work fine with all available Gradle versions ;-)

from gradle-node-plugin.

Kobe avatar Kobe commented on August 20, 2024

@deepy I didn't find any fork hints or something like that so I assumed it's a different plugin.

Do I need import com.moowork.gradle.node.yarn.YarnTask or is there another solution?

from gradle-node-plugin.

deepy avatar deepy commented on August 20, 2024

The fork should work fine without any workarounds, I don't think you need to import YarnTask to get this to work, simply changing to id("com.github.node-gradle.node") version "2.2.1" should be fine

from gradle-node-plugin.

Kobe avatar Kobe commented on August 20, 2024

I don‘t think so due to you need to import YarnTasks.

from gradle-node-plugin.

Jensen-Mourat avatar Jensen-Mourat commented on August 20, 2024

Added a fork with the fix for those using earlier gradle versions (Tested with gradle 2.11).

https://github.com/Jensen-Mourat/gradle-node-plugin

from gradle-node-plugin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.