Skip to content

Instantly share code, notes, and snippets.

@cdsap
Created May 17, 2019 08:51
Show Gist options
  • Save cdsap/f26315b54731fda26e5d3da313060067 to your computer and use it in GitHub Desktop.
Save cdsap/f26315b54731fda26e5d3da313060067 to your computer and use it in GitHub Desktop.
GradleValues
def taskProducer = tasks.register("taskProducer", TaskProducer) {
output.set(new File(project.buildDir, "test.log"))
}
def artifact = taskProducer.flatMap { it.output }
tasks.register("taskConsumer", TaskConsumer) {
input.set(artifact)
showFile()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment