get date now groovy

To get the current date in Groovy, you can use the Date class along with the new Date() constructor. Here's an example:

def currentDate = new Date()

This will create a new Date object representing the current date and time. You can then use this object to perform various operations, such as formatting the date or extracting specific information like the day, month, or year.