Skip to content

Instantly share code, notes, and snippets.

@sebersole
Created April 29, 2015 15:38
Show Gist options
  • Save sebersole/57888887f6466c220143 to your computer and use it in GitHub Desktop.
Save sebersole/57888887f6466c220143 to your computer and use it in GitHub Desktop.
task myTask {
inputs.files project.sourceSets.main.resources +
project.configurations.compile.dependencies.findAll{ it instanceof ProjectDependency }.dependencyProject.sourceSets.main.resources
}
task myTask {
inputs.files project.sourceSets.main.resources
project.configurations.compile.dependencies.each {
if ( it instanceof ProjectDependency ) {
inputs.files it.dependencyProject.sourceSets.main.resources
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment