To create distributive of my java app I use this Gradle task:
gradle clean distZip
And here output:
BUILD SUCCESSFUL in 2s
5 actionable tasks: 3 executed, 2 up-to-date
Ok, but I need to print sequences of all executed tasks. Smt like this:
app:clean
app:JavaCompile
app:jar
distZip
CodePudding user response:
According to this, using --console
should solve your problem.
Like this: gradle --console=plain clean distZip