You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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'
The text was updated successfully, but these errors were encountered:
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'
The text was updated successfully, but these errors were encountered: