Running this on a current Ubuntu release I found some dependency issues that arise. Seems to start with not finding a file Ivy.xml which is no longer where it was. I was also using a later jdk and that causes earlier Gradle releases to barf. Using the plugins line below in the build file allowed me to use the current jdk and Gradle. You "might" have the missing Ivy.xml file issue with any releases - I didn't check.
I found this solution via a similar problem on Google:
plugins {
id "com.github.node-gradle.gulp" version "1.3.0"
}
apply plugin: 'com.github.node-gradle.gulp'
Running this on a current Ubuntu release I found some dependency issues that arise. Seems to start with not finding a file Ivy.xml which is no longer where it was. I was also using a later jdk and that causes earlier Gradle releases to barf. Using the plugins line below in the build file allowed me to use the current jdk and Gradle. You "might" have the missing Ivy.xml file issue with any releases - I didn't check.
I found this solution via a similar problem on Google:
plugins {
id "com.github.node-gradle.gulp" version "1.3.0"
}
apply plugin: 'com.github.node-gradle.gulp'