node-gradle / gradle-node-plugin

Gradle plugin for integrating NodeJS in your build. :rocket:
Apache License 2.0
599 stars 117 forks source link

Cannot download com.github.node-gradle.gulp #269

Closed santu558 closed 1 year ago

santu558 commented 1 year ago

Hello,

Iam trying to run gulp task from gradle using this gradle plugin - https://plugins.gradle.org/plugin/com.github.node-gradle.gulp below is the error we are getting `Could not apply requested plugin [id: 'com.github.node-gradle.gulp', version: '1.5.3'] as it does not provide a plugin with id 'com.github.node-gradle.gulp'. This is caused by an incorrect plugin implementation. Please contact the plugin author(s).

Plugin with id 'com.github.node-gradle.gulp' not found. `

is anything iam missing

deepy commented 1 year ago

Which Gradle version are you on? I don't think the old versions have been tested outside of Gradle 5, but for grunt and gulp usage the recommendation is: https://github.com/node-gradle/gradle-node-plugin/blob/master/docs/faq.md#gulp

santu558 commented 1 year ago

Thanks for the reply, I am using gradle 5.4.1 and facing this issue when i use below configs in my build.gradle file id "com.github.node-gradle.node" version "3.5.1" id "com.github.node-gradle.gulp" version "1.5.3" When i reverted com.github.node-gradle.node to 1.5.3 it works fine, thank you for looking at this!