I\'m trying to verify that my source and target paths are properly setup when I execute a deploy command.
See the example below: (copied from: http://eppz.eu/blog/u
Basically you can print out a message by this gradle script -
println "This is a simple gradle message"
but if you want to print a variable in the message then you can do it by the following code
def variable = "This is a simple variable" println "Message: ${variable}"