Skip to content

Instantly share code, notes, and snippets.

@joerodriguez
Created May 8, 2015 04:03
Show Gist options
  • Save joerodriguez/76488bbd346f5797c2a4 to your computer and use it in GitHub Desktop.
Save joerodriguez/76488bbd346f5797c2a4 to your computer and use it in GitHub Desktop.
gradle gulp
plugins {
id "com.moowork.gulp" version "0.9"
}
apply plugin: 'com.moowork.gulp'
node {
version = '0.10.22'
download = true
}
task setup(dependsOn: [npmInstall, installGulp])
task build(type: GulpTask, dependsOn: setup) {
args = ["build"]
}
task test(type: GulpTask, dependsOn: setup) {
args = ["allTests"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment