is there a way to tell gradle to re-run a task whe...
# community-support
b
is there a way to tell gradle to re-run a task when the project version changes?
1
t
You can make the version property a task input. Something like inputs.properties(project.version)
b
thank you
inputs.property("version", project.version) I guess
1