gradle-release
gradle-release copied to clipboard
Document how to depend on release task itself
using
release.dependsOn clean
throws error
Cannot cast object 'task ':clean'' with class 'CleanTask_Decorated' to class 'groovy.lang.Closure'
instead use
project.tasks.release.dependsOn clean
This happens because release now resolves to the extension (the configuration) instead of the task, as both are named the same.
I just ran into the same issue using
- Gradle 6.2
- gradle-release Plugin 2.8.1
Thanks for your Plugin, it really helps!